13.10.2013, 11:54
You should include the size of the string too.
For example:
For example:
pawn Код:
// THIS IS WRONG:
new id, reason[64];
if(sscanf(params, "rs", id, reason)) // return an error message about usage
pawn Код:
// THIS IS CORRECT:
new id, reason[64];
if(sscanf(params, "rs[64]", id, reason)) // return an error message about usage