30.12.2014, 16:02
About the sscanf warning, you have to assign a size to the new string within the sscanf-function. (Not sure how to describe it).
pawn Код:
new string[64];
sscanf(params, "s[64]", string); // you probably forgot the [64] or whatever size is needed, after the 's'