help to catch an event a client did not send a command
PHP Code:
public client_command(id)
{
new argv[32]
read_argv(0,argv, sizeof(argv)-1)
for (new i = 0; i < MAX_CMD; i++)
if (equal(argv,cmd[i]))
{
client_print(0, print_chat,"Client sent a command %s", cmd[i])
return PLUGIN_HANDLED
}
// help
if client did not send a command cmd[i] ...
//