Hi to all

This is my first plugin =]
But i don't know why he doesent work

Here is the code:
PHP Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "ConnectMsg"
#define VERSION "1.0"
#define AUTHOR "SounD"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
}
public client_connect(id) {
new name [32] ;
get_user_name(id, name, 31)
set_hudmessage(255, 255, 255, 0.10, 0.50, 0, 6.0, 12.0)
if(is_user_admin(id)) {
show_hudmessage(0, "Warrning !!! ^n Admin %s is connecting ! ^nBe more careful !")
} else {
show_hudmessage(0, "%s is connecting !")
}
}
The plugin is compiling without errors and
warrnings, but in game he doesent work 0.o
I look for hud msg durring take in players but it not
show me the msg

Sorry for my bad language

10x in advance ;)