18.02.2013, 19:09
Why is the SaveStats function in that command?
As far as I can see you aren't saving any of the variables within that code.
But from what I can gather from the message, you need to CTRL+F and type sscanf.
Where you see an "s" without [32] or other size next to it in between the quotation marks, find the strings size and add it in next to the "s"
Example:
Would then become:
Do you understand?
As far as I can see you aren't saving any of the variables within that code.
But from what I can gather from the message, you need to CTRL+F and type sscanf.
Where you see an "s" without [32] or other size next to it in between the quotation marks, find the strings size and add it in next to the "s"
Example:
pawn Код:
new string[64];
if(sscanf(params, "s", string)) ...
pawn Код:
new string[64];
if(sscanf(params, "s[64]", string))...