file not found run time error -
fuckingcruse - 26.05.2015
Hi , guys i came back to scripting after a long time , IDK why is that thing comming always..

please suggest me
Re: file not found run time error -
Konstantinos - 26.05.2015
It's been answer hundreds of times, a simple search on ****** would be enough.
Anyway, load nativechecker plugin (last in
plugins line in server.cfg) and run the server. Then post the server log so we can see what functions are not registered and also what plugins were loaded/failed to load or not added in server.cfg at all.
Re: file not found run time error -
kalanerik99 - 26.05.2015
If you use plugins you need this
line in server.cfg
plugin .................(your plugins)
And check if your gamemode compiles fine
EDIT: I forgot to refresh thread ! #Konstantinos
Re: file not found run time error -
fuckingcruse - 26.05.2015
Код:
echo Executing Server Config...
lanmode 0
rcon_password hi
maxplayers 50
port 7777
hostname SA-MP 0.3 Server
gamemode0 pop 1
filterscripts
skinchanger
announce 0
query 1
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
the script compiles fine , and i searched at ****** and then tried all stuffs and then made this post
Re: file not found run time error -
Michael B - 26.05.2015
1. Download the plugin (nativechecker) located at
here.
2. Place the plugin in your "plugins" folder, located in your server's root.
3. Add "nativechecker" to your filterscripts line inside your
server.cfg file.
echo Executing Server Config...
lanmode 0
rcon_password hi
maxplayers 50
port 7777
hostname SA-MP 0.3 Server
gamemode0 pop 1
filterscripts skinchanger
nativechecker
announce 0
query 1
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
Re: file not found run time error -
fuckingcruse - 26.05.2015
still the same
Re: file not found run time error -
Konstantinos - 26.05.2015
Quote:
Originally Posted by Konstantinos
[..] load nativechecker plugin (last in plugins line in server.cfg) and run the server. Then post the server log [..]
|
As long as you don't load nativechecker (or even crashdetect) plugin, nobody is able to guess what plugins your script might use.
In
server.cfg, add a new line:
plugins nativechecker
You've been told where to download the plugin and more instructions to the other 2 posts.
@Michael B: It's not a filterscript but a plugin.
Re: file not found run time error -
fuckingcruse - 26.05.2015
see i added that line plugin loaded too
but same error
Re: file not found run time error -
Konstantinos - 26.05.2015
Okay, sscanf is missing. Change the line to:
pawn Код:
plugins sscanf nativechecker
and add sscanf.dll into
plugins folder.
Re: file not found run time error -
fuckingcruse - 27.05.2015
Ok I will try..