30.10.2016, 22:50
Heya, Here is my HealthHack code:
That's the latest printf on the console:
I got banned after this, what the hell ...
PHP код:
forward HealthHack();
public HealthHack()
{
new Float:hp, Float:ap;
foreach(new playerid : Player)
{
if(PlayerInfo[playerid][pSpawned] && !SpawnProtected[playerid])
{
if(!GivingHealth[playerid] && !GivingArmour[playerid])
{
GetPlayerHealth(playerid, hp);
GetPlayerArmour(playerid, ap);
printf("Debug Health: %.0f Armour: %.0f || HP: %.0f AP: %.0f", Health[playerid], Armour[playerid], hp, ap);
if(hp != Health[playerid] || ap != Armour[playerid]) AddBan(playerid, RPN(playerid), "Anti Cheat", "Health Hacking", RPIP(playerid));
}
else
{
GivingHealth[playerid] = 0;
GivingArmour[playerid] = 0;
}
}
}
return 1;
}
Код:
Debug Health: 100 Armour: 17 || HP: 100 AP: 17