SA-MP Forums Archive
Anti Money Cheat Modify? Help? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Anti Money Cheat Modify? Help? (/showthread.php?tid=81088)



Anti Money Cheat Modify? Help? - steven_italy - 08.06.2009

In the AntiCheat System that i'm using this is the anti money cheat:
Код:
public moneycheat()
{
for(new i=0; i < MAX_PLAYERS; i++)
{
new playername[MAX_PLAYER_NAME], string[256];
GetPlayerName(i, playername, sizeof(playername));
//MONEYCHEAT
if(GetPlayerMoney(i) >= 9999999999)
if(hguard == 1)
if(IsPlayerConnected(i))
{
format(string, 256, "%s (ID:%d) has banned from server. Reason: MoneyCheat(+9999999999!)");
SendClientMessageToAll(COLOR_RED, string);
Ban(i);
}
}
return 1;
}
How i can modify this thins that not only if a player has the money > 9999999999? Because there are other cheats that allow to increase money of 1000, 100000, 1000000 ... I saw some servers where, if u apply money cheat, it come back on your original money amount, making the money hack useless...


Re: Anti Money Cheat Modify? Help? - Salmon - 08.06.2009

Your best bet its to search for an anti-money hack filterscript.


Re: Anti Money Cheat Modify? Help? - speedruntrainer - 01.08.2009

error 017: undefined symbol "hguard"
pls help me on how to define it.