Plugins Errors -
NewbieHelper - 01.02.2014
I Am Using VPS and i can't start my server
here is server_log.txt
----------
Loaded log file: "server_log.txt".
----------
SA-MP Dedicated Server
----------------------
v0.3x-R2, ©2005-2013 SA-MP Team
[03:04:49]
[03:04:49] Server Plugins
[03:04:49] --------------
[03:04:49] Loaded 0 plugins.
[03:04:49]
[03:04:49] Filterscripts
[03:04:49] ---------------
[03:04:49] Loading filterscript 'buttons.amx'...
[03:04:49] Loading filterscript 'anim.amx'...
[03:04:49] Loading filterscript 'audio.amx'...
[03:04:49] Loaded 3 filterscripts.
As you see Plugins Are 0 Loaded , I Uploaded all plugins with .dll and .so , but i don't know where to add plugins line on the server.cfg (I AM USING LUNIX BECAUSE ANY VPS NEED LUNIX SAMP SERVER FILES)
echo Executing Server Config...
lanmode 0
rcon_password changeme
maxplayers 50
port 7777
hostname SA-MP 0.3 Server
gamemode0 grandlarc 1
filterscripts base gl_actions gl_property gl_realtime
announce 0
query 1
weburl
www.sa-mp.com
maxnpc 0
onfoot_rate 40
incar_rate 40
weapon_rate 40
stream_distance 300.0
stream_rate 1000
So Can You Help Me Where Can I Put Plugins Line In Server.cfg and how to load all plugins (Streamer,sscanf,audio)
Respuesta: Plugins Errors -
Cepillado300 - 01.02.2014
Just write the line at the bottom of the server.cfg file
For example:
weapon_rate 40
stream_distance 300.0
stream_rate 1000
plugins <and here you write the name of the plugin>
Also, if you are in linux you must write .so as the plugin extension, for example: sscanf.so
Re: Plugins Errors -
NewbieHelper - 01.02.2014
here is what appeared to me
----------
Loaded log file: "server_log.txt".
----------
SA-MP Dedicated Server
----------------------
v0.3x-R2, ©2005-2013 SA-MP Team
[03:38:41]
[03:38:41] Server Plugins
[03:38:41] --------------
[03:38:41] Loading plugin: streamer.so
thats all nothing more loaded
Respuesta: Plugins Errors -
Cepillado300 - 01.02.2014
You have to write all the plugins that you want to be loaded in the same line, like:
plugins sscanf.so streamer.so and so with other plugins that you want to include
Re: Plugins Errors -
SAMProductions - 01.02.2014
Try This,
Код:
echo Executing Server Config...
lanmode 0
rcon_password changeme
maxplayers 50
port 7777
hostname SA-MP 0.3 Server
gamemode0 grandlarc 1
filterscripts base gl_actions gl_property gl_realtime
plugins pluginname.so pluginname.dll
announce 0
query 1
weburl www.sa-mp.com
maxnpc 0
onfoot_rate 40
incar_rate 40
weapon_rate 40
stream_distance 300.0
Change "pluginname" into your Plugin's Name (
The Red Colored One)
"
.so" - Linux
"
.dll" - Windows OS
Example :-
Код:
echo Executing Server Config...
lanmode 0
rcon_password changeme
maxplayers 50
port 7777
hostname SA-MP 0.3 Server
gamemode0 grandlarc 1
filterscripts base gl_actions gl_property gl_realtime
plugins sscanf.so streamer.so
announce 0
query 1
weburl www.sa-mp.com
maxnpc 0
onfoot_rate 40
incar_rate 40
weapon_rate 40
stream_distance 300.0
Or :-
Код:
echo Executing Server Config...
lanmode 0
rcon_password changeme
maxplayers 50
port 7777
hostname SA-MP 0.3 Server
gamemode0 grandlarc 1
filterscripts base gl_actions gl_property gl_realtime
plugins sscanf.dll streamer.dll
announce 0
query 1
weburl www.sa-mp.com
maxnpc 0
onfoot_rate 40
incar_rate 40
weapon_rate 40
stream_distance 300.0
Include the Plugins that will be needed on your Server.
More Plugins Here :-
SA-MP: Plugin Development
Re: Plugins Errors -
NewbieHelper - 01.02.2014
Tried All Of That But Here Is The Result :
----------
Loaded log file: "server_log.txt".
----------
SA-MP Dedicated Server
----------------------
v0.3x-R2, ©2005-2013 SA-MP Team
[15:29:32]
[15:29:32] Server Plugins
[15:29:32] --------------
[15:29:32] Loading plugin: streamer.so