16.12.2010, 15:09
.... Dont you know how to fix it yourself? yesterday I fixed 200 warnings, and alone...
pawn Код:
new Float:armour;
GetPlayerArmour(playerid, armour);
if(armour >= 1)
{
new string [128];
new pName[MAX_PLAYER_NAME];
new plrIP[16];
GetPlayerIp(playerid, plrIP, sizeof(plrIP));
GetPlayerName(playerid, pName, sizeof(pName));
format(string, sizeof(string), "%s (IP: %s) has been auto-banned. - Reason: Armour Spawn. -", pName,plrIP);
SendClientMessageToAll(0xFF000000, string);
BanEx(playerid, "AntiCheat - Armour Spawn");
BanLog(string);
return 1;
}

