01.12.2011, 19:25
I created a quick script that if your armour is 100+, You will get banned for Amour hacking,
But, Where is the best place to place it?
Heres my Coding.
But, Where is the best place to place it?
Heres my Coding.
pawn Код:
new Float:armour;
GetPlayerArmour(playerid,armour);
if (armour == 100)
{
new banned [MAX_PLAYERS],string[128];
GetPlayerName(playerid, banned, sizeof(banned));
format(string, sizeof(string), "AdminCMD: %s has been banned for Armour Hacks", banned);
SendClientMessageToAll(COLOR_ORANGE, string);
Ban(playerid);
}