I read it here:
http://forums.alliedmods.net/showthread.php?t=136682
But its not working,Any changes to do?
PHP Code:
#include <amxmodx>
#include <amxmisc>
new const gszSound[] = "sheep.wav";
public plugin_precache()
{
precache_sound( gszSound )
}
public plugin_init()
{
register_plugin("Testing", "1,0", "Waleed")
register_clcmd("say /mega", "cmd_me")
}
public cmd_me(id)
{
client_cmd(id, "sheep.wav")
}
__________________