04.08.2011, 08:22
With sscanf, you must declare the string length in the actual format itself. So when you create a string:
You must then also declare it:
You only need to do this for strings.
pawn Код:
new message[128],string[128];
pawn Код:
if(sscanf(params,"us[128]",id,message)) // Notice the [128]