24.10.2010, 13:24
What is the purpose of this? if your using a antihack and making it so that money saves into a variables (new playerMoney[MAX_PLAYERS]
then just have an anti-hack timer that sets your money to the variable.. like

pawn Код:
public moneyAntiHack(){
for(new i=0; i<MAX_PALYERS; i++){
if(GetPlayerMoney != playerMoney[playerid]){
SetPlayerMoney(playerid, playerMoney[playerid]);
}
}
return 1;
}