21.07.2013, 11:22
You have to give a default value to D, which will make "amount" optional, let's say we want "amount" to be 10 if not specified:
to
Also, you need to have 50 posts to give reputation.
pawn Код:
if(sscanf(params, "s[32]dD", choice, doorid, amount))
pawn Код:
if(sscanf(params, "s[32]dD(10)", choice, doorid, amount))