PHP Code:
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say", "cmdSay")
}
public cmdSay(id)
{
new text[200]
read_args(text,199)
remove_quotes(text)
if(containi(text,"/add")==0)
strtok(text, text, 199, YourNumberWillBeHere, 255, ' ')
return PLUGIN_CONTINUE
}