Run time error 19: "File or function is not found" - 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: Run time error 19: "File or function is not found" (
/showthread.php?tid=587858)
Run time error 19: "File or function is not found" -
Nucky - 03.09.2015
It has been a long time since I was doing Pawn scripting, so I'm kinda back to a fresh start.
Anyway, I tried loading my script from 0.3z or 0.3e (I don't remember the version) and eventually it started to give me this error and did not want to load my plugins.
All my plugins are failing to load and I get this error msg.
Код:
SA-MP Dedicated Server
----------------------
v0.3.7-R2, ©2005-2015 SA-MP Team
[16:03:11] filterscripts = "" (string)
[16:03:11]
[16:03:11] Server Plugins
[16:03:11] --------------
[16:03:11] Loading plugin: streamer.so
[16:03:11] Failed.
[16:03:11] Loading plugin: mysql.so
[16:03:11] Failed.
[16:03:11] Loading plugin: irc.so
[16:03:11] Failed.
[16:03:11] Loading plugin: sscanf.so
[16:03:11] Failed.
[16:03:11] Loaded 0 plugins.
Script [gamemodes/gamemode.amx]: Run time error 19: "File or function is not found"
I've tried to look for answers, .pwn sucessfully compiled and I've tried updating streamer.so but then I messed up everything. Currently I'm running the server local on my computer to test it before I buy a gameserver.
Re: Run time error 19: "File or function is not found" -
lanix - 03.09.2015
use nativechecker to check errors
Re: Run time error 19: "File or function is not found" -
CoachCarter - 03.09.2015
Try upgrading every single plugin and check if plugins are included insinde the .cfg file
Re: Run time error 19: "File or function is not found" -
Michael B - 03.09.2015
I assume that your
OS is
Windows, as you stated that you're running the server locally. As far as I see, you're trying to run plugins in
.so format on your
Windows OS. .so files are meant for
Linux use, therefore, you will have to switch your plugins to
.dll format.
Re: Run time error 19: "File or function is not found" -
Nucky - 03.09.2015
Solved. I forgot to change from .so to .dll in the config. Thanks, rep+ to you.