Quote:
Originally Posted by cessil
Quote:
Originally Posted by DarkPhoenix
This is my command givecash and when I sen someone $5000 it shows $2 or $0. Anyway, it's wrong and I don't know what's causing it, the money increases with 5000 but it shows the wrong message.
pawn Код:
format(str, sizeof(str), "%s has given you $%d.", playername, playerid, amount);
|
that's formatting "playername has given you $playerid" which if the playerid is 0 gives you $0 and if the playerid is 2 gives you $2
|
So it will be fine if I use this?
pawn Код:
format(str, sizeof(str), "%s has given you $%d.", playername, amount);