sscanf warning: Format specifier does not match parameter count.
#1

im getting tons of this message when i start server....

Код:
sscanf warning: Format specifier does not match parameter count.
Reply
#2

Guessing you've got something like this:
Код:
new para1, para2;
sscanf(variable, "ii", para1);
which should be
Код:
new para1, para2;
sscanf(variable, "ii", para1, para2);
It can be writen on soooooo many ways, you gotta look up every sscanf's you've got and fix them.
Reply
#3

ah ok...
Reply
#4

btw will it effect my gameplay?
Reply
#5

Obviously, it will.
Reply
#6

okay so i have gone through all the script and found couple of problem and fixed them...but warnings still persist....

btw when i use some commands e.g /gedit open 2 then in logs it says "sscanf warning: No default value found."
Reply
#7

How does your sscanf call in /gedit look like?
Reply
#8

never mind fixed the problem it was a bug in my house system...anyway thanks for uyour help..
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)