17.09.2012, 15:51
Found a mistake in your command.
You said if player has $5000, then only player can use that command.
But here, less than $5000 can use this command.
It must be
You said if player has $5000, then only player can use that command.
But here, less than $5000 can use this command.
pawn Код:
if(GetPlayerMoney(playerid)<5000) //Here It's getting players money less than $5000.
pawn Код:
if(GetPlayerMoney(playerid)>=5000) //Greater than or equal to $5000.