Server won't start - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Server (
https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (
https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: Server won't start (
/showthread.php?tid=365088)
Server won't start -
Jordan1460 - 01.08.2012
Help, My server won't start...
Server_Log.txt
Code:
Console:
----------
Loaded log file: "server_log.txt".
----------
SA-MP Dedicated Server
----------------------
v0.3e, ©2005-2012 SA-MP Team
[16:10:00]
[16:10:00] Server Plugins
[16:10:00] --------------
[16:10:00] Loading plugin: Whirlpool
[16:10:00] Failed (plugins/Whirlpool: cannot open shared object file: No such file or directory)
[16:10:00] Loading plugin: Streamer
[16:10:00] Failed (plugins/Streamer: cannot open shared object file: No such file or directory)
[16:10:00] Loaded 0 plugins.
[16:10:00]
[16:10:00] Filterscripts
[16:10:00] ---------------
[16:10:00] Loading filterscript 'LuxAdmin.amx'...
[16:10:00] Loading filterscript 'animations.amx'...
[16:10:00] Loading filterscript 'yrace.amx'...
[16:10:00]
+--------------------------------+
[16:10:00] | Yagu's Race Filterscript v0.4a |
[16:10:00] +--------------LOADED------------+
[16:10:00] Loaded 3 filterscripts.
[16:10:00] Script[gamemodes/XS.amx]: Run time error 19: "File or function is not found"
[16:10:00] Number of vehicle models: 0
----------
Loaded log file: "server_log.txt".
----------
SA-MP Dedicated Server
----------------------
v0.3e, ©2005-2012 SA-MP Team
[16:10:48]
[16:10:48] Server Plugins
[16:10:48] --------------
[16:10:48] Loading plugin: Whirlpool
[16:10:48] Failed (plugins/Whirlpool: cannot open shared object file: No such file or directory)
[16:10:48] Loading plugin: Streamer
[16:10:48] Failed (plugins/Streamer: cannot open shared object file: No such file or directory)
[16:10:48] Loaded 0 plugins.
[16:10:48]
[16:10:48] Filterscripts
[16:10:48] ---------------
[16:10:48] Loading filterscript 'LuxAdmin.amx'...
[16:10:48] Loading filterscript 'animations.amx'...
[16:10:48] Loading filterscript 'yrace.amx'...
[16:10:48]
+--------------------------------+
[16:10:48] | Yagu's Race Filterscript v0.4a |
[16:10:48] +--------------LOADED------------+
[16:10:48] Loaded 3 filterscripts.
[16:10:48] Script[gamemodes/XS.amx]: Run time error 19: "File or function is not found"
[16:10:48] Number of vehicle models: 0
----------
Loaded log file: "server_log.txt".
----------
SA-MP Dedicated Server
----------------------
v0.3e, ©2005-2012 SA-MP Team
[16:12:50]
[16:12:50] Server Plugins
[16:12:50] --------------
[16:12:50] Loading plugin: Whirlpool
[16:12:50] Failed (plugins/Whirlpool: cannot open shared object file: No such file or directory)
[16:12:50] Loading plugin: Streamer
[16:12:50] Failed (plugins/Streamer: cannot open shared object file: No such file or directory)
[16:12:50] Loaded 0 plugins.
[16:12:50]
[16:12:50] Filterscripts
[16:12:50] ---------------
[16:12:50] Loading filterscript 'LuxAdmin.amx'...
[16:12:50] Loading filterscript 'animations.amx'...
[16:12:50] Loading filterscript 'yrace.amx'...
[16:12:50]
+--------------------------------+
[16:12:50] | Yagu's Race Filterscript v0.4a |
[16:12:50] +--------------LOADED------------+
[16:12:50] Loaded 3 filterscripts.
[16:12:50] Script[gamemodes/XS.amx]: Run time error 19: "File or function is not found"
[16:12:50] Number of vehicle models: 0
Server.cfg
Code:
echo Executing Server Config...
lanmode 0
rcon_password changeme
maxplayers 15
port 7778
hostname [0.3e]Xtreme Planet
gamemode0 XS 1
filterscripts LuxAdmin animations yrace
plugins Whirlpool Streamer
announce 0
query 1
weburl www.volt-host.com
onfoot_rate 40
incar_rate 40
weapon_rate 40
stream_distance 300.0
stream_rate 1000
maxnpc 0
Skype - Jordan_1460
Re: Server won't start -
nenum12 - 01.08.2012
If you have paid for the server to be opened you may need to wait a while for the money etc to go through.
Re: Server won't start -
Dan. - 01.08.2012
Isn't it obvious from reading the code?
pawn Code:
[16:10:00] Failed (plugins/Whirlpool: cannot open shared object file: No such file or directory)
[16:10:00] Loading plugin: Streamer
You dont have the needed plugins in your 'plugins' folder.
E:// Or probably, the volt host server is on linux, so you have to put ".so" after your plugins. Like this:
Code:
echo Executing Server Config...
lanmode 0
rcon_password changeme
maxplayers 15
port 7778
hostname [0.3e]Xtreme Planet
gamemode0 XS 1
filterscripts LuxAdmin animations yrace
plugins Whirlpool.so Streamer.so
announce 0
query 1
weburl www.volt-host.com
onfoot_rate 40
incar_rate 40
weapon_rate 40
stream_distance 300.0
stream_rate 1000
maxnpc 0
Also again you ahve to make sure you have the .so plugin files in 'plugins' folder.
Re: Server won't start -
gilberto - 01.08.2012
Your missing plugins,
Code:
[16:12:50] Server Plugins
[16:12:50] --------------
[16:12:50] Loading plugin: Whirlpool
[16:12:50] Failed (plugins/Whirlpool: cannot open shared object file: No such file or directory)
[16:12:50] Loading plugin: Streamer
[16:12:50] Failed (plugins/Streamer: cannot open shared object file: No such file or directory)
[16:12:50] Loaded 0 plugins.
You need to download them and upload them to your "plugins" folder.
Whirlpool:
https://sampforum.blast.hk/showthread.php?tid=65290
Streamer:
https://sampforum.blast.hk/showthread.php?tid=102865
Re: Server won't start -
Mustang[GTS] - 01.08.2012
Download the plugins and copy to your plugins map and retry start server