[HELP]: Anti-Money Hack - 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)
+--- Thread: [HELP]: Anti-Money Hack (
/showthread.php?tid=438258)
[HELP]: Anti-Money Hack -
Areax - 19.05.2013
Hello!
I tried to make anti money hack, but i failed...
Here is my code:
Under OnPlayerUpdate:
pawn Код:
if(GetPlayerMoney(playerid, =>10000001)) return ResetPlayerMoney(playerid);
What's wrong?
Thanks
AW: [HELP]: Anti-Money Hack -
HurtLocker - 19.05.2013
pawn Код:
new badcash=GetPlayerMoney(playerid);
if(badcash>=10000001) return ResetPlayerMoney(playerid);
Re: AW: [HELP]: Anti-Money Hack -
Areax - 19.05.2013
Quote:
Originally Posted by HurtLocker
pawn Код:
new badcash=GetPlayerMoney(playerid); if(badcash>=10000001) return ResetPlayerMoney(playerid);
|
Thx