PHP Code:
public hook_say(id) {
static chat[192];
read_argv(1, chat,sizeof(chat) - 1);
remove_quotes(chat);
if(equal(chat[2],"")) {
client_print(id,print_chat,"No arguments given");
return PLUGIN_CONTINUE;
}
if(equal(chat, "/raport", 7)) {
//code
}
}
How can i see if after /raport is text or not ?