11.04.2011, 13:29
Код:
GivePlayerMoney(playerid,GetPlayerMoney(playerid)-200);
Thus giving the player $600 on top of what he already has... You must reset the Player's Money in order to get it back to 0, then give the altered money as shown in the code below:
Код:
new money; money=GetPlayerMoney(playerid); ResetPlayerMoney(playerid); GivePlayerMoney(playerid,money-200);