Code:
register_clcmd("say", "cmdSay")
Code:
public cmdSay(id)
{
new szWords[20]
read_argv(1, szWords, charsmax(szWords))
remove_quotes (szWords)
if(equal(szWords, "thetime"))
{
client_print(id, print_chat, szWords)
return PLUGIN_HANDLED
}
return PLUGIN_CONTINUE
}
I think the original plugin that uses thetime will be affected. If it be, then you need to add the
client_print() in the code of your nextmap plugin.
__________________