12.12.2014, 15:55
While declaring 'Suggestion' under the command, declare it as an array, not as an integer. Also, since sscanf2, you've to include the size of the array while passing it with 's' specifier.
I also want to note that you don't have to use 128 as the string size for the path stock. You could count the character limit of the directory and sum up it with 25 (MAX_PLAYER_NAME+1).
Edit: late.
pawn Код:
new Suggestion[64];
if(sscanf(params, "s[64]", Suggestion))
Edit: late.