[Include] Simple,Fast Anti-Money Hack with FilterScript support
#14

Quote:
Originally Posted by sekol
Посмотреть сообщение
Maan, 30 seconds is damn long. Cheater could spawn some money and buy ie house before it takes his money. If i'll change it to 1sec, it will lag my server?
On my server, I have set it inside the speedometer.
Creating a new timer for every player just to update his money is a bit pointless

This speedometer timer runs every 500ms.
When you hack money, you only see it for maximum 500ms, then the money on client side is resetted to the money at server side again, making the hack pointless.

Just create a timer that runs every 500ms:
pawn Код:
new Money[MAX_PLAYERS];

public OnPlayerConnect(playerid)
{
    SetTimerEx("MoneyTimer", 500, true, "i", playerid);

    return 1;
}

forward MoneyTimer(playerid);
public MoneyTimer(playerid)
{
    ResetPlayerMoney(playerid);
    GivePlayerMoney(playerid, Money[playerid]);
}
Whenever you want to give the player some money, add that value to the value in the Money array:
pawn Код:
Money[playerid] = Money[playerid] + payment;
Even when setting the speedometer to update every 500ms, it doesn't lag.
It's only 2 instructions after all (ResetPlayerMoney and GivePlayerMoney) that are executed every 500ms.
Reply


Messages In This Thread
Simple,Fast Anti-Money Hack with FilterScript support - by wups - 12.11.2010, 15:58
Re: Simple,Fast Anti-Money Hack with FilterScript support - by Brian_Furious - 12.11.2010, 16:04
Re: Simple,Fast Anti-Money Hack with FilterScript support - by dark_clown - 12.11.2010, 16:06
Re: Simple,Fast Anti-Money Hack with FilterScript support - by Scenario - 12.11.2010, 16:06
Re: Simple,Fast Anti-Money Hack with FilterScript support - by wups - 12.11.2010, 16:14
Re: Simple,Fast Anti-Money Hack with FilterScript support - by Gh0sT_ - 12.11.2010, 16:21
Re: Simple,Fast Anti-Money Hack with FilterScript support - by Brian_Furious - 12.11.2010, 16:25
Re: Simple,Fast Anti-Money Hack with FilterScript support - by wups - 12.11.2010, 16:25
Re: Simple,Fast Anti-Money Hack with FilterScript support - by martiins2 - 12.11.2010, 16:31
Re: Simple,Fast Anti-Money Hack with FilterScript support - by wups - 12.11.2010, 16:38
Re: Simple,Fast Anti-Money Hack with FilterScript support - by Scenario - 12.11.2010, 16:47
Re: Simple,Fast Anti-Money Hack with FilterScript support - by sekol - 18.01.2011, 18:24
Re: Simple,Fast Anti-Money Hack with FilterScript support - by wups - 18.01.2011, 19:07
Re: Simple,Fast Anti-Money Hack with FilterScript support - by PowerPC603 - 18.01.2011, 19:19
Re: Simple,Fast Anti-Money Hack with FilterScript support - by PowerPC603 - 18.01.2011, 19:21
Re: Simple,Fast Anti-Money Hack with FilterScript support - by wups - 18.01.2011, 19:42
Re: Simple,Fast Anti-Money Hack with FilterScript support - by Shetch - 20.02.2011, 22:03
Re: Simple,Fast Anti-Money Hack with FilterScript support - by wups - 21.02.2011, 16:15
Re: Simple,Fast Anti-Money Hack with FilterScript support - by LZLo - 22.02.2011, 18:56
Respuesta: Simple,Fast Anti-Money Hack with FilterScript support - by anonymousx - 23.02.2011, 17:48
Re: Respuesta: Simple,Fast Anti-Money Hack with FilterScript support - by wups - 23.02.2011, 18:11
Re: Simple,Fast Anti-Money Hack with FilterScript support - by Scenario - 19.08.2011, 12:22
Re: Simple,Fast Anti-Money Hack with FilterScript support - by wups - 31.08.2011, 07:40
Re: Simple,Fast Anti-Money Hack with FilterScript support - by Ernests - 10.09.2011, 10:36
Re: Simple,Fast Anti-Money Hack with FilterScript support - by wups - 10.09.2011, 12:58
Re: Simple,Fast Anti-Money Hack with FilterScript support - by Derek_Westbrook - 26.03.2012, 14:07
Re: Simple,Fast Anti-Money Hack with FilterScript support - by Juninho_Oakley - 26.03.2012, 14:23
Re: Simple,Fast Anti-Money Hack with FilterScript support - by Awankz - 27.03.2012, 01:25
Re: Simple,Fast Anti-Money Hack with FilterScript support - by MichaelProPlayer - 22.04.2012, 07:46
Re: Simple,Fast Anti-Money Hack with FilterScript support - by KevinRiyah - 17.02.2015, 18:37
Re: Simple,Fast Anti-Money Hack with FilterScript support - by Sc0pion - 03.03.2015, 08:00
Re: Simple,Fast Anti-Money Hack with FilterScript support - by Finnick - 07.03.2015, 12:24
Re: Simple,Fast Anti-Money Hack with FilterScript support - by VenomMancer - 20.03.2015, 12:59
Re: Simple,Fast Anti-Money Hack with FilterScript support - by Amunra - 16.12.2015, 10:45

Forum Jump:


Users browsing this thread: 1 Guest(s)