SA-MP Forums Archive
Sscanf problem - 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: Sscanf problem (/showthread.php?tid=473168)



Sscanf problem - boomerboom - 01.11.2013

Код:
[19:26:08]    Error: Function not registered: 'SSCANF_Init'
[19:26:08]    Error: Function not registered: 'SSCANF_Join'
[19:26:08]    Error: Function not registered: 'SSCANF_Leave'
[19:26:08]    Error: Function not registered: 'sscanf'
Any body?


Re: Sscanf problem - Konstantinos - 01.11.2013

Is sscanf loaded? Update the plugin and include file, re-compile and run the server again.


Re: Sscanf problem - boomerboom - 01.11.2013

Quote:
Originally Posted by Konstantinos
Посмотреть сообщение
Is sscanf loaded? Update the plugin and include file, re-compile and run the server again.
I have only this plugins:

Код:
#include <a_samp>
#include <zcmd>
#include <YSI\y_ini>
#include <foreach>
#include <sscanf2>
#include <dini>



Re: Sscanf problem - Konstantinos - 01.11.2013

Those are include files! I meant - is the sscanf plugin loaded successfully to the server or it failed to?

EDIT1: Post the server log.

PS: This forum requires that you wait 240 seconds between posts. Please try again in 240 seconds.



Re: Sscanf problem - boomerboom - 01.11.2013

Quote:
Originally Posted by Konstantinos
Посмотреть сообщение
Those are include files! I meant - is the sscanf plugin loaded successfully to the server or it failed to?
Where can I see that?


Re: Sscanf problem - boomerboom - 01.11.2013

Код:
[19:36:45] filterscripts = ""  (string)
[19:36:45] 
[19:36:45] Server Plugins
[19:36:45] --------------
[19:36:45]  Loading plugin: SScanf2
[19:36:45]   Failed.
[19:36:45]  Loading plugin: Ignioto
[19:36:45]   Failed.
[19:36:45]  Loading plugin: foreach
[19:36:45]   Failed.
[19:36:45]  Loading plugin: YSI
[19:36:45]   Failed.
[19:36:45]  Loading plugin: nativechecker
[19:36:45]   Loaded.
[19:36:45]  Loading plugin: dini
[19:36:45]   Failed.
[19:36:45]  Loaded 1 plugins.

[19:36:45] 
[19:36:45] Filterscripts
[19:36:45] ---------------
[19:36:45]   Loaded 0 filterscripts.

[19:36:45]    Error: Function not registered: 'SSCANF_Init'
[19:36:45]    Error: Function not registered: 'SSCANF_Join'
[19:36:45]    Error: Function not registered: 'SSCANF_Leave'
[19:36:45]    Error: Function not registered: 'sscanf'
[19:36:45] Script[gamemodes/LOL.amx]: Run time error 19: "File or function is not found"
[19:36:45] Number of vehicle models: 0



Re: Sscanf problem - LeeXian99 - 01.11.2013

Is your hosting server uses Linux or Windows?


Re: Sscanf problem - Konstantinos - 01.11.2013

pawn Код:
[19:36:45]  Loading plugin: SScanf2
[19:36:45]   Failed.
[19:36:45]  Loading plugin: Ignioto
[19:36:45]   Failed.
[19:36:45]  Loading plugin: foreach
[19:36:45]   Failed.
[19:36:45]  Loading plugin: YSI
[19:36:45]   Failed.
[19:36:45]  Loading plugin: nativechecker
[19:36:45]   Loaded.
[19:36:45]  Loading plugin: dini
[19:36:45]   Failed.
Plugins differ from includes. You DO NOT load the includes, but the plugins.

Change in server.cfg, the plugins line to:
pawn Код:
plugins sscanf nativechecker
unless it's Linux, so change accordingly:
pawn Код:
plugins sscanf.so nativechecker.so



Re: Sscanf problem - boomerboom - 01.11.2013

It's luxadmin