19.10.2013, 13:54
That's how sscanf works, it's the format. I.e.:
Read the sscanf topic before using it.
pawn Код:
new targetid, skin;
if(sscanf(params, "ud", targetid, skin)) return ...; // is correct
if(sscanf(params, targetid, "d", skin)) return ...; // is incorrect