sscanf icon indicating copy to clipboard operation
sscanf copied to clipboard

SA:MP sscanf plugin originally made by @Y-Less

Results 23 sscanf issues
Sort by recently updated
recently updated
newest added

Code: `new sArray[16][64]; sscanf("||||test|||||||||||", "pa[16]", sArray);` Result: https://i.imgur.com/ZRKFyjU.png Code: `new sArray[16][64]; sscanf("|||||||||||||||test", "pa[16]", sArray);` Result: https://i.imgur.com/2OwpqWk.png Code: `new sArray[16][64]; sscanf("|||||||||||||||test", "pA(empty)[16]", sArray);` Result: https://i.imgur.com/e5LSZpI.png Code: `new sArray[16][64]; sscanf("|||||||||||||||test", "ps[64]s[64]s[64]s[64]s[64]s[64]s[64]s[64]s[64]s[64]s[64]s[64]s[64]s[64]s[64]s[64]", sArray[0],...

Like it has been written [here](http://forum.sa-mp.com/showpost.php?p=3714545&postcount=49). Adding a whole `OnError` callback would be overkill though. Hell, I could even use my log library to log that stuff (however that's probably...

enhancement

Simply put, a word specifier ('w'). It will take everything up to a space or custom delimiter. It's basically like the string specifier when there are parameters after it but...

sscanf has become incompatible with YSI Includes, when enabling the new sscanf for open.mp YSI returns the following error: "fatal error 111: user error: OnScriptInit defined"

Before the warning message, when % character is used as prefix for specifier, was displayed like this: ``` sscanf specifiers do not require '' before them. ``` instead of ```...

paul@raspberrypi:~/Desktop/sscanf/build$ make [ 8%] Building C object CMakeFiles/sscanf.dir/amx/amx.c.o In file included from /home/paul/Desktop/sscanf/amx/amx.c:38: In file included from /usr/include/assert.h:35: In file included from /usr/include/features.h:392: /usr/include/features-time64.h:20:10: fatal error: 'bits/wordsize.h' file not found...

About 2 diffrent samp version, it's required since we need to specify version target, making it support for people who still uses 0.3.DL and also supporting people who uses latest...

why sscanf u specifier doesn't work properly when input player name? ``` new otherid ; if(sscanf(inputtext, "u", otherid)) return Error(playerid, "Please Input Name!"); if(!IsPlayerConnected(otherid)) return Error(playerid, "Player tidak valid"); ```...

It should automatically look for int max (-2147483647 - 2147483647), some breaking changes happened to my script as a user supassed one of those limits in a command parameter

- fix for compile error - fix for #41