04.06.2015, 05:15
Quote:
Little help here.
I want to make it so that players can use /cmd [Username / ID] $500 or /cmd [Username / ID] 500. I tried pawn Код:
I want the $ to be optional. |
pawn Код:
sscanf(params, "ud", id, amountStr)
if(amountStr[0] == '$') amount = strval(amountStr[1]);
else amount = strval(amountStr);
pawn Код:
sscanf(params, "P<,$>ud", id, amount)
Oh and by the way, that one accepts almost anything...
PlayerID 999
PlayerID $999
PlayerID 999$