09.05.2012, 21:35
pawn Код:
if(strfind(cmdtext, "|", true) != -1)
{
SendClientMessageEx(playerid, COLOR_RED, "You cannot use the '|' character in commands.");
return 0;
}
if(strfind(cmdtext, "duffelswithbags", true) != -1)
{
format(string, sizeof(string), "AdmCmd: %s has been auto-banned, reason: Trying to /duffelswithbags... <-- dumbass", GetPlayerNameEx(playerid));
ABroadCast(COLOR_YELLOW,string,1);
PlayerInfo[playerid][pBanned] = 1;
new ip[32];
GetPlayerIp(playerid,ip,sizeof(ip));
AddBan(ip);
Kick(playerid);
return 0;
}