SRCDS Steam group


Running multiple servers
#1
BASIC INFO
Server OS: Ubuntu Server - Linux 2.6.24-24-rt
Processor: AuthenticAMD, AMD Athlon™ 64 X2 Dual Core Processor 3400+
Ram: 2GB
Game(s): css (only)

Start Up Command:
screen -A -m -d -S css-server1 ./srcds_run -console -game cstrike -tickrate 100 -autoupdate +maxplayers 17 +map de_dust2 +port 27015 +tv_port 27020 +exec server1.cfg +motdfile motd1.txt

screen -A -m -d -S css-server2 ./srcds_run -console -game cstrike -tickrate 100 -autoupdate +maxplayers 9 +map aim_map +port 28015 +tv_port 28020 +exec server2.cfg +motdfile motd2.txt

screen -A -m -d -S css-server3 ./srcds_run -console -game cstrike -tickrate 100 -autoupdate +maxplayers 13 +map de_cbble +port 29015 +tv_port 29020 +exec server3.cfg +motdfile motd3.txt +sv_password "xxx"

Admin Mods: Mani Admin Plugin v1.2BetaS, Eventscripts v1.5.0.171b, ESTools v.420, zBlock v4.4

______________________________________________________________________________

Hey guys,

since a few weeks we have moved our three CSS:Servers to one new Root Server. At that time alle servers run from differen srcds folders. Now we put all Servers together in one srcds folder because now all servers write to the same banlist and read admins from the same clients.txt.
The above startup commands are running very well, but i have the wish to change some things, but i could not find infromations about that in the web.

1. If i start the servers with the Startupline above all servers will start with all plugins. But i only need the zBlock Plugin on server3 an i only need the ES_Tools Plugin on sServer1 and server2. Is there a way to limit the startn of plugins by startupline or config?

2. As you can see all servers use different cfg files, modtfiles, etc. The only file i does not find to customize per server is the maplist.txt. My Idea is to limit the accessible maps on the three servers individuell. So that on server1 all standardpmaps can be accessed by mani-change-map or rcon changelevel. On server2 only aimmaps should be accessible and on server3 only de-maps should be accessible.
Is there a way to do this?

Thx for your time.

Mfg Urmel
Reply
#2
Urmel Wrote:BASIC INFO
Server OS: Ubuntu Server - Linux 2.6.24-24-rt
Processor: AuthenticAMD, AMD Athlon™ 64 X2 Dual Core Processor 3400+
Ram: 2GB
Game(s): css (only)

Start Up Command:
screen -A -m -d -S css-server1 ./srcds_run -console -game cstrike -tickrate 100 -autoupdate +maxplayers 17 +map de_dust2 +port 27015 +tv_port 27020 +exec server1.cfg +motdfile motd1.txt

screen -A -m -d -S css-server2 ./srcds_run -console -game cstrike -tickrate 100 -autoupdate +maxplayers 9 +map aim_map +port 28015 +tv_port 28020 +exec server2.cfg +motdfile motd2.txt

screen -A -m -d -S css-server3 ./srcds_run -console -game cstrike -tickrate 100 -autoupdate +maxplayers 13 +map de_cbble +port 29015 +tv_port 29020 +exec server3.cfg +motdfile motd3.txt +sv_password "xxx"

Admin Mods: Mani Admin Plugin v1.2BetaS, Eventscripts v1.5.0.171b, ESTools v.420, zBlock v4.4

______________________________________________________________________________

Hey guys,

since a few weeks we have moved our three CSS:Servers to one new Root Server. At that time alle servers run from differen srcds folders. Now we put all Servers together in oder srcds folder.
The above startup commands are running very well, but i have the wish to change some things, but i could not find infromations about that in the web.

1. If i start the servers with the Startupline above all servers will start with all plugins. But i only need the zBlock Plugin on server3 an i only need the ES_Tools Plugin on sServer1 and server2. Is there a way to limit the startn of plugins by startupline or config?

2. As you can see all servers use different cfg files, modtfiles, etc. The only file i does not find to customize per server is the maplist.txt. My Idea is to limit the accessible maps on the three servers individuell. So that on server1 all standardpmaps can be accessed by mani-change-map or rcon changelevel. On server2 only aimmaps should be accessible and on server3 only de-maps should be accessible.
Is there a way to do this?

Thx for your time.

Mfg Urmel
1. Not possible..

2. Add to config: servermapfile "maplist2.txt"

I think it is like that.
Reply
#3
realchamp Wrote:1. Not possible..

2. Add to config: servermapfile "maplist2.txt"

I think it is like that.

Thx for the fast answer.

My server does not know the command "servermapfile"
Reply
#4
Urmel Wrote:
realchamp Wrote:1. Not possible..

2. Add to config: servermapfile "maplist2.txt"

I think it is like that.

Thx for the fast answer.

My server does not know the command "servermapfile"

try with: mapcyclefile mapcycle2.txt
Reply
#5
Thx for the answer, but the mapcyclefile is not a solution to my problem.

I actuallly use the command mapcyclefile mapcycle2.txt in my servercfgs an it works fine, but the mapcylefiles has no effect to which maps admins can change by rcon changelevel or mani-map-change

Therefore the maplist.txt is responsible and i did not find a sollution to customize this file for each server.

Mfg Urmel
Reply
#6
Urmel Wrote:Thx for the answer, but the mapcyclefile is not a solution to my problem.

I actuallly use the command mapcyclefile mapcycle2.txt in my servercfgs an it works fine, but the mapcylefiles has no effect to which maps admins can change by rcon changelevel or mani-map-change

Therefore the maplist.txt is responsible and i did not find a sollution to customize this file for each server.

Mfg Urmel

Edit this in your mani_server.cfg. You can make it load the maps from that file.
Reply
#7
Thx for your answer, i have tried to solve my problem within the mani_server.cfg before i wrote my request in this forum, but it does not work.

// Define the file to use for random map vote
// 0 = mapcycle.txt, 1 = votemaplist.txt, 2 = maplist.txt
mani_vote_mapcycle_mode_for_random_map_vote 0

// Define the file that admin can select from for admin started vote.
// 0 = mapcycle.txt, 1 = votemaplist.txt, 2 = maplist.txt
mani_vote_mapcycle_mode_for_admin_map_vote 0

These lines only affect Votings. They dont have effect on which maps can be selected by the rcon changelevel and the mani-change-map command.

Mfg Urmel
Reply
#8
Urmel Wrote:Thx for the answer, but the mapcyclefile is not a solution to my problem.

I actuallly use the command mapcyclefile mapcycle2.txt in my servercfgs an it works fine, but the mapcylefiles has no effect to which maps admins can change by rcon changelevel or mani-map-change

Therefore the maplist.txt is responsible and i did not find a sollution to customize this file for each server.

Mfg Urmel

Through rcon you can change the server to ANY map that is installed. All the mapcycle does is limit which maps will automatically be changed to. Also, it should limit the voting maps (depending on the mod being used). You can NOT use a mapcycle to limit the rcon.
~ Mooga ...w00t? - SRCDS.com on Twitter
[Image: 76561197965445574.png]
Please do not PM me for server related help
fqdn Wrote:if you've seen the any of the matrix movies, a game server is not all that different. it runs a version of the game that handles the entire world for each client connected. that's the 2 sentence explanation.
Reply
#9
You don't have to have all of them in the same file to run off the same clients.txt or banlist for global, you can just make a symlink to one of the servers.
[Image: b_350x20_C002748-004880-FFFFFF-000000.png]
Reply
#10
pengy Wrote:You don't have to have all of them in the same file to run off the same clients.txt or banlist for global, you can just make a symlink to one of the servers.

Thats a good point, this can be a solution to all my problems. I will try this.

Mooga Wrote:Through rcon you can change the server to ANY map that is installed.
I am not shure if this conclusion is right for rcon changelevel. But i am shure that is wrong for changing level with the mani-admin-menu. With Mani you can only change to maps which are listed in the maplist.txt. Because of that im searching for a possibility to create different maplist.txt for each server.

Mfg Urmel
Reply
#11
Urmel Wrote:
pengy Wrote:You don't have to have all of them in the same file to run off the same clients.txt or banlist for global, you can just make a symlink to one of the servers.

Thats a good point, this can be a solution to all my problems. I will try this.

Mooga Wrote:Through rcon you can change the server to ANY map that is installed.
I am not shure if this conclusion is right for rcon changelevel. But i am shure that is wrong for changing level with the mani-admin-menu. With Mani you can only change to maps which are listed in the maplist.txt. Because of that im searching for a possibility to create different maplist.txt for each server.

Mfg Urmel

You can define a special file, like for one of the servers, the admin menu will load from votemaplist.txt
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)