Hello

i try to create plugin
this is my first plugin
this is the code :
PHP Code:
#include <amxmodx>
#define PLUGIN "map"
#define VERSION "0.1"
#define AUTHOR "_Ha1M_/Wait"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd( "say /map", "MAP" )
register_clcmd( "say !map", "MAP" )
}
public MAP(id)
{
if ( !(get_user_flags(id)&ADMIN_CVAR))
return PLUGIN_CONTINUE;
server_cmd("changelevel %s")
client_print( 0, print_chat, "Map change to %s");
return PLUGIN_HANDLED;
}
when i write "!map" or "!map de_dust2"
Nothing happens.
what can i do?
and sorry for my english,
Thanks, Haim.