09.03.2010, 13:16
Quote:
Originally Posted by Zimon95
Код:
public HH(playerid) { new Float:health; GetPlayerHealth(playerid,health); if(health > 2) //line 374 { SetPlayerHealth(playerid, health-1); //line 376 if(health == 100) //line 377 { //line 378 SendClientMessage(playerid, COLOUR_RED,"Anticheat: You have been banned for Health hacks!"); Ban(playerid); return 1; //line 381 } SetPlayerHealth(playerid,health+1); //line 382 return 1; } return 1; } |