Impossible To Hack Money - 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: Impossible To Hack Money (
/showthread.php?tid=87505)
Impossible To Hack Money -
NiGhTWoLFy - 20.07.2009
I have heard that is one antimoneycheat (or a function) or something like this what makes impossible to hack money.I have tried to use some antimoney hack fs and .inc in the past ,but all had some problems.For example the anticheats bans the player for some commands like admin commands /givemoney /money or for stunts bonuses.Others antimoneycheats simply are not compatible with Godfather gamemode.So if this all failed for me I whant to know how to make impossible money hacking without any fs or includes.Does anyone know how?
Re: Impossible To Hack Money -
James_Alex - 20.07.2009
yes there is
you can juste create your own server money gfor example:
do not type
but use
pawn Code:
if(pMoney[playerid] == ...
![Wink](images/smilies/wink.png)
and don't forgot to add "new pMoney[MAX_PLAYERS];"
Re: Impossible To Hack Money -
NiGhTWoLFy - 21.07.2009
I found the system in the Carlito's roleplay gamemode.It works fine but when I am disconnecting from the server and reconnecting the money are resetting to 0000000000 and I don't just get it why ...
Re: Impossible To Hack Money -
MenaceX^ - 21.07.2009
Get some filterscripts, there's alot.
Re: Impossible To Hack Money -
NiGhTWoLFy - 21.07.2009
Give me an example of Fs who is working for sure pls if you know one
Re: Impossible To Hack Money -
Sergei - 21.07.2009
Here is turtorial:
http://forum.sa-mp.com/index.php?topic=95879.0
Re: Impossible To Hack Money -
Pawno_Master - 21.07.2009
Just use
if(GetPlayerMoney(playerid) > 999999) { Ban(playerid); }
you can edit it to every amount
Re: Impossible To Hack Money -
Chrham_2 - 21.07.2009
Quote:
Originally Posted by ekeleke
Just use
if(GetPlayerMoney(playerid) > 999999) { Ban(playerid); }
you can edit it to every amount
|
True, but a hacker knows that they shouldn't use 999999, because to many servers has that function.
He know hes safe when he add i.e 500k.
Re: Impossible To Hack Money -
NiGhTWoLFy - 21.07.2009
I want something like when he spawns money the money bar to reset to the initial value.Not many will use 99999999$ because exists /check command and it must be a little full to do that
Re: Impossible To Hack Money -
NiGhTWoLFy - 22.07.2009
SolvedThanks all for your help.