23.05.2014, 12:06
You get this error because your string without a length you used
You should use instead:
pawn Код:
new reason[24];
if(sscanf(params, "s",reason))...//empty string cell
pawn Код:
new reason[24];
if(sscanf(params, "s[24]",reason)) ...