SA-MP Forums Archive
sa-mp not work in linux - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP (https://sampforum.blast.hk/forumdisplay.php?fid=3)
+--- Forum: General (https://sampforum.blast.hk/forumdisplay.php?fid=13)
+--- Thread: sa-mp not work in linux (/showthread.php?tid=509988)



sa-mp not work in linux - cuchipkg - 29.04.2014

server log my server
Код HTML:
----------
Loaded log file: "server_log.txt".
----------

SA-MP Dedicated Server
----------------------
v0.3z, ©2005-2014 SA-MP Team

[05:13:26] password = ""  (string)
[05:13:26] 
[05:13:26] Server Plugins
[05:13:26] --------------
[05:13:26]  Loading plugin: streamer
[05:13:26]   Failed (plugins/streamer: cannot open shared object file: No such file or directory)
[05:13:26]  Loading plugin: sscanf
[05:13:26]   Failed (plugins/sscanf: cannot open shared object file: No such file or directory)
[05:13:26]  Loading plugin: Whirlpool
[05:13:26]   Failed (plugins/Whirlpool: cannot open shared object file: No such file or directory)
[05:13:26]  Loading plugin: audio
[05:13:26]   Failed (plugins/audio: cannot open shared object file: No such file or directory)
[05:13:26]  Loaded 0 plugins.

[05:13:26] 
[05:13:26] Filterscripts
[05:13:26] ---------------
[05:13:26]   Loading filterscript 'LSL-RP.amx'...
[05:13:26]   Loading filterscript 'laser.amx'...
[05:13:26]   Loading filterscript 'MidoStream.amx'...
[05:13:26]   Loading filterscript 'denchop.amx'...
[05:13:26] 
--------------------------------------
[05:13:26]  Police Flash lights V2.1
[05:13:26]  By CuChip
[05:13:26] --------------------------------------

[05:13:26]   Loading filterscript 'powerfire.amx'...
[05:13:26]    Fire-Power by BRICS loaded.
[05:13:26]   Loaded 5 filterscripts.

[05:13:27] Script[gamemodes/BS.amx]: Run time error 19: "File or function is not found"
[05:13:27] Number of vehicle models: 0
my plugins in on server why samp not read ?


Re: sa-mp not work in linux - iBanner - 29.04.2014

It looks like you didn't put those plugins in the correct folder it should be inside the folder "YourServerFiles/plugins/

Script[gamemodes/BS.amx]: Run time error 19: "File or function is not found" - This one is also like the same with the other problem. Make sure you have the includes you are using in your GM. inside pawno/includes


Re: sa-mp not work in linux - Saurik - 29.04.2014

Did you put .so after your files? Are your plugins in "plugins" folder?

please show your server.cfg and don't forget to remove the rcon password.


Re: sa-mp not work in linux - cuchipkg - 29.04.2014

this sever.cfg
Код HTML:
echo Executing Server Config...
lanmode 1
password 
rcon_password noname
maxplayers 30
port 7777
hostname [LSL-BS] Black Star
gamemode0 BS
filterscripts LSL-RP laser MidoStream denchop powerfire
announce 1
plugins streamer sscanf Whirlpool audio 
query 1
weburl gtasavn.eazy.vn
onfoot_rate 100
incar_rate 100
weapon_rate 100
stream_distance 200.0
stream_rate 1000
maxnpc 0
logtimeformat [%H:%M:%S]



Re: sa-mp not work in linux - Kirollos - 29.04.2014

As Saurik mentioned, put .so after each plugin's name in the server.cfg (and use .so plugins not .dll plugins)


Re: sa-mp not work in linux - GeasyW - 29.04.2014

Plugins mate, none is loaded.. Check your script folder... Maybe you deleted
them
Download all the Linux plugins, [ Find em on Plugin's threads ], and put those in the "Plugins" folder. Go to your server.cfg, and in plugins line add ".so" And then try - It will work.


Re: sa-mp not work in linux - Guest4390857394857 - 29.04.2014

try with this config!
Код:
echo Executing Server Config...
lanmode 1
password 
rcon_password noname
maxplayers 30
port 7777
hostname [LSL-BS] Black Star
gamemode0 BS
filterscripts LSL-RP laser MidoStream denchop powerfire
announce 1
plugins streamer.so sscanf.so Whirlpool.so audio.so
query 1
weburl gtasavn.eazy.vn
onfoot_rate 100
incar_rate 100
weapon_rate 100
stream_distance 200.0
stream_rate 1000
maxnpc 0
logtimeformat [%H:%M:%S]



Re: sa-mp not work in linux - Kirollos - 29.04.2014

Quote:
Originally Posted by ShivRp
Посмотреть сообщение
try with this config!
Код:
echo Executing Server Config...
lanmode 1
password 
rcon_password noname
maxplayers 30
port 7777
hostname [LSL-BS] Black Star
gamemode0 BS
filterscripts LSL-RP laser MidoStream denchop powerfire
announce 1
plugins streamer sscanf Whirlpool audio 
query 1
weburl gtasavn.eazy.vn
onfoot_rate 100
incar_rate 100
weapon_rate 100
stream_distance 200.0
stream_rate 1000
maxnpc 0
logtimeformat [%H:%M:%S]
What? You never changed anything!


Re: sa-mp not work in linux - cuchipkg - 29.04.2014

change what ?
Rep+ All reply Topic


Re: sa-mp not work in linux - Saurik - 29.04.2014

change this
Код:
plugins streamer sscanf Whirlpool audio
to this
Код:
plugins.so streamer.so sscanf.so Whirlpool.so audio.so
in your server.cfg

And obviously put all the .so files you have into the /plugins folder!