20.10.2010, 02:26
Quote:
|
You could check if a players health is over 100 if it is kick or ban. I've not tested but i can't see why it won't work unless im missing something.
|
pawn Код:
new Float:health;
GetPlayerHealth(playerid,health);
if (health > 100.0)
{
SendClientMessage(playerid, COLOR_RED, "You've been banned for health hacks.");
BanEx(playerid, "HP Hacks" );
}
You will need to make your own call back, put this in a timer, and have it scan all players using MaxPlayers, GetMaxPlayers or whatever.


