01.08.2011, 07:51
I can't even see you put a "SetPlayerScore" over there.
Probably you got a timer or OnPlayerUpdate that will set's the player's score with the same value of his money.
The code should looks like :
If you found it's a timer, remove the timer.
Probably you got a timer or OnPlayerUpdate that will set's the player's score with the same value of his money.
The code should looks like :
pawn Код:
public OnPlayerUpdate( playerid ) // Or something like this ( A timer )
{
SetPlayerScore( playerid, GetPlayerMoney( playerid ) );
return 1;
}