29.01.2015, 19:51
Your english is very hard to understand, but making an anti money cheat system is very easy.
First make a variable to store the player's money in.
When you give or take money from a player with GivePlayerMoney, set the variable value to the amount you give/take.
And under OnGameModeInit, set a repeating timer to check if your money variable has the same value as the players money (GetPlayerMoney).
First make a variable to store the player's money in.
When you give or take money from a player with GivePlayerMoney, set the variable value to the amount you give/take.
pawn Код:
GivePlayerMoney(playerid, 200);
VariableName[playerid] = 200;

