I make the anti flood or anti spam in my server. That's mean when player spam chat he will get kick.But soon i discover player in my server use /me [messenger] to spam and my anti spam can not kick him. Another problem it's the /fall disable fall on ground when hit by stubby , shotgun or spa
How can i disable /me or /fall in my server ? I use this
else if (strcmp(cmd, "/fall", true) == 0) {
SendClientMessagef(playerid,RED, "You can't use this");
return 1;
else if (strcmp(cmd, "/me", true) == 0) {
SendClientMessagef(playerid,RED, "You can't use this");
return 1;
But it's not work in my scripts.