sscanf error
#6

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:
pawn Код:
new string[64];
if(sscanf(params, "s", string)) ...
Would then become:

pawn Код:
new string[64];
if(sscanf(params, "s[64]", string))...
Do you understand?
Reply


Messages In This Thread
sscanf error - by dusk - 18.02.2013, 07:35
Re: sscanf error - by electrux - 18.02.2013, 09:07
Re: sscanf error - by dusk - 18.02.2013, 17:36
Re: sscanf error - by Boooth - 18.02.2013, 18:31
Re: sscanf error - by dusk - 18.02.2013, 18:55
Re: sscanf error - by Boooth - 18.02.2013, 19:09
Re: sscanf error - by dusk - 18.02.2013, 19:36

Forum Jump:


Users browsing this thread: 2 Guest(s)