Quote:
Originally Posted by SuperViper
pawn Code:
if(GetPlayerMoney(playerid) > 5500)
No, this won't take the player's money. It will check if they have the money.
|
Indeed with SuperViper, it shall be like this instead:
pawn Code:
if(GetPlayerMoney(playerid) > 5500)
{
GivePlayerMoney(playerid, -5500);
}