Run time error 19: "File or function is not found" -
xClown - 04.09.2015
Код:
#include "a_samp"
#include "change_color"
#include "foreach"
native WP_Hash(buffer[],len,const str[]);
#include "YSI\y_ini"
Код:
echo Executing Server Config...
lanmode 0
rcon_password passwordisnocorrect
maxplayers 50
port 7777
hostname XX Gaming
gamemode0 WW
filterscripts
announce 0
chatlogging 0
weburl www.sa-mp.com
onfoot_rate 40
incar_rate 40
weapon_rate 40
stream_distance 300.0
stream_rate 1000
maxnpc 0
logtimeformat [%H:%M:%S]
language English
Код:
----------
Loaded log file: "server_log.txt".
----------
SA-MP Dedicated Server
----------------------
v0.3.7-R2, ©2005-2015 SA-MP Team
[16:12:26] filterscripts = "" (string)
[16:12:26]
[16:12:26] Server Plugins
[16:12:26] --------------
[16:12:26] Loaded 0 plugins.
[16:12:26]
[16:12:26] Filterscripts
[16:12:26] ---------------
[16:12:26] Loaded 0 filterscripts.
[16:12:26] Script[gamemodes/WW.amx]: Run time error 19: "File or function is not found"
[16:12:26] Number of vehicle models: 0
Re: Run time error 19: "File or function is not found" -
Fancy - 04.09.2015
1.Is the gamemode placed in the gamemode folder?
2.What is the name of the gamemode in the gamemode in gamemodes folder?
3.All plugins are loaded?
Re: Run time error 19: "File or function is not found" -
xClown - 04.09.2015
Quote:
Originally Posted by Fancy
1.Is the gamemode placed in the gamemode folder?
2.What is the name of the gamemode in the gamemode in gamemodes folder?
3.All plugins are loaded?
|
1. Yes, in gamemodes folder
2. WW, as well as in the cfg
3. I don't have a plugins.
Re: Run time error 19: "File or function is not found" -
VoltMeter - 04.09.2015
Quote:
Originally Posted by xClown
Код:
echo Executing Server Config...
lanmode 0
rcon_password passwordisnocorrect
maxplayers 50
port 7777
hostname XX Gaming
gamemode0 WW
filterscripts
announce 0
chatlogging 0
weburl www.sa-mp.com
onfoot_rate 40
incar_rate 40
weapon_rate 40
stream_distance 300.0
stream_rate 1000
maxnpc 0
logtimeformat [%H:%M:%S]
language English
|
Quote:
Originally Posted by xClown
[16:12:26] Server Plugins
[16:12:26] --------------
[16:12:26] Loaded 0 plugins.
|
As you see, you have not loaded any plugins. Make sure you load all the plugins that are necessary for your gamemode. Try adding a line " plugins " into your server.cfg after the "filterscripts" line. In the plugins line, write "sscanf streamer whirlpool nativechecker". These four plugins might help you in your problem. Add this line like this:
Код:
filterscripts -----
plugins sscanf streamer whirlpool nativechecker
You need to download these plugins. Try googling them like "samp sscanf.dll download".
The second possible solution might be to check if the "GameMode" is placed in the gamemode directory. If so, what is its name. The gamemode's name should be written in the server.cfg file. Like if I have a gamemode named "VMeter", I will add it like this in my server.cfg:
If the gamemode placed in the directory is named other than the name you have in your server.cfg, you will have to change the name in the server.cfg
The third possible solution is to trying update your ".net Framework" and "DirectX". In many cases, MSVCP100.dll or MSVCR100.dll are missing. This problem can be fixed by updating the .net Framework and/or DirectX
If I have helped you, please +REP me.
Re: Run time error 19: "File or function is not found" -
xTURBOx - 04.09.2015
try adding the plugin native checker to see the missing plugins
https://sampforum.blast.hk/showthread.php?tid=249226
Re: Run time error 19: "File or function is not found" -
xClown - 04.09.2015
Quote:
Originally Posted by VoltMeter
As you see, you have not loaded any plugins. Make sure you load all the plugins that are necessary for your gamemode. Try adding a line " plugins " into your server.cfg after the "filterscripts" line. In the plugins line, write "sscanf streamer whirlpool nativechecker". These four plugins might help you in your problem. Add this line like this:
Код:
filterscripts -----
plugins sscanf streamer whirlpool nativechecker
You need to download these plugins. Try googling them like "samp sscanf.dll download".
If I have helped you, please +REP me.
|
Hah, it's be a Whirpool, thanks buddy, rep +.
Re: Run time error 19: "File or function is not found" -
Nixtren - 04.09.2015
I also suggest you to use the plugin CrashDetect to troubleshoot more easily further problems like this one