13.07.2011, 15:04
sscanf does that
sscanf alias unformat reads from the string parameter params and put the data in the variables on the right side
the format parameter "ui" tells sscanf how to unformat the string params
u - playername or playerid
i - integer
You should read the sscanf 2.0 thread, use ****** to find it (that easier)
pawn Код:
if(sscanf(params, "ui", PlayerBeingPaid, AmountBeingPaidToPlayer))
the format parameter "ui" tells sscanf how to unformat the string params
u - playername or playerid
i - integer
You should read the sscanf 2.0 thread, use ****** to find it (that easier)