02.01.2013, 18:33
Here's an anti aim bot (i didn't test it)
https://sampforum.blast.hk/showthread.php?tid=306586
For the Health Hack thing its easy here's a little example
The code above is untested its just an example.
https://sampforum.blast.hk/showthread.php?tid=306586
For the Health Hack thing its easy here's a little example
pawn Код:
new Float:Health;
if(GetPlayerHealth(playerid,Health)>100)
{
new string[128], pName[MAX_PLAYER_NAME];
GetPlayerName(playerid, pname, sizeof(pname));
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(PlayerInfo[i][pAdmin] >= 1)
{
format(string, sizeof(string), "%s Might be health hacking", pName);
SendClientMessage(i,COLOR_ORANGERED, string);
}
}
}
//bla bla