SA-MP Forums Archive
Filterscript error 100 - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Filterscript error 100 (/showthread.php?tid=566519)



Filterscript error 100 - dundolina - 06.03.2015

Hello it gives me error on this filterscript: https://sampforum.blast.hk/showthread.php?tid=553353 when i try to compile. I have all sscanf things and YSI and still gives me error..
Код:
fatal error 100: cannot read from file: "sscanf"



Re: Filterscript error 100 - Evocator - 06.03.2015

You need to add the sscanf include in your \pawno\include folder.
You can get that from: https://sampforum.blast.hk/showthread.php?tid=120356


Re: Filterscript error 100 - Threshold - 06.03.2015

If you are using the latest version of the sscanf include, the include name is actually sscanf2, not sscanf.

Whereas the plugin for SSCANF is labelled 'sscanf' as opposed to 'sscanf2'.

In your script:
pawn Код:
#include <sscanf2>
In your server.cfg:
Код:
plugins sscanf



Re: Filterscript error 100 - dundolina - 06.03.2015

Thank you!