29.01.2011, 17:38
Then just use the following to make sure the player only has $5000 on spawn, since you did say you want to set their money and not give them money:
You need to use some algorithmic problem solving
pawn Код:
public OnPlayerSpawn(playerid)
{
ResetPlayerMoney(playerid);
GivePlayerMoney(playerid,5000);
return 1;
}