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: Money hack (
/showthread.php?tid=407076)
Money hack -
Fernado Samuel - 12.01.2013
Removed
Respuesta: Money hack -
Fabio11 - 12.01.2013
Make a variable like PlayerMoney[MAX_PLAYERS]; then make a stock to give money and to alter the variable, then make a timer to check if the player money correspond with the variable, if not, he is cheating.
Re: Money hack -
DaRk_RaiN - 12.01.2013
Basix
pawn Код:
public OnPlayerUpdate(playerid)
{
if(GetPlayerMoney(playerid)>=1000000)//Change the ammount of the max server money
{
BanEx(playerid,"Moneyhack");
SendClientMessage(playerid,-1, "Banned for Money hack.");
}
return 1;
}
Re: Respuesta: Money hack -
Fernado Samuel - 13.01.2013
Removed
Re: Money hack -
[ABK]Antonio - 13.01.2013
https://sampforum.blast.hk/showthread.php?tid=220089