Linux Dedicated Server Binaries

trinium

Private Tester
Can i get some brief information (launch options) and the linux server binaries to host a few dedicated servers. I have an empty server in my rackspace @ a TX datacenter and would like to setup 1 pug and 2 pubs for the community.

Thanks,
Trinium
 

trinium

Private Tester
ok, ill find a workaround for now. i may be-able to use wine or a vm. If there is anything you need assistance with , im available to help now. finding that i have a lot of free time and resources now that i'm sober
 

Severance

Private Tester
Do you start the server in the game GUI, or do you use a dedicated server command line?
If command line, please post it..
I'm hosting the Total Meltdown server.

L:\public-test_2\Legions.exe -dedicated -mod-list=ModList_Server.txt -server-config=config.cs
 

The_Horny_Rat

New Member
I'm hosting the Total Meltdown server.

L:\public-test_2\Legions.exe -dedicated -mod-list=ModList_Server.txt -server-config=config.cs
Your Total Meltdown server, is stuck on deathmatch and crashed. I was unable to connect.
DEVs, Legions needs a function that restarts the server when the last player drops, with a InfiniteSpawn for the legions.exe, like tribes1, and tribes2, have. ;)
 

GReaper

Grumpy
Full server install is available over rsync:

Code:
rsync -a --stats --progress --compress rsync.legionsoverdrive.com::public-test public-test

You'll probably need a couple of config files:

server/preferences/prefs.cs - put any global prefs here

Code:
$Host::GameType = "CTF";
$Host::Type = "Multiplayer Web";
$Host::DefaultGameLength = "25m";

server/preferences/server1.cs - put server specific prefs here

Code:
$Host::Port = 28001;
$Host::Name = "UNCONFIGURED SERVER";
$Host::MaxPlayers = 20;
$Host::MaxObservers = 10;
 
$Host::Maps::MissionFile[0] = "legions/data/missions/SnowMap02.mis";
$Host::Maps::Weight[0] = 1.0;
$Host::Maps::MinPlayers[0] = 0;
$Host::Maps::MaxPlayers[0] = 18;
 
$Host::Maps::MissionFile[1] = "legions/data/missions/SnowMap01.mis";
$Host::Maps::Weight[1] = 0.8;
$Host::Maps::MinPlayers[1] = 0;
$Host::Maps::MaxPlayers[1] = 12;
 
$Host::Maps::MissionFile[2] = "legions/data/missions/GrassMap01.mis";
$Host::Maps::Weight[2] = 0.6;
$Host::Maps::MinPlayers[2] = 0;
$Host::Maps::MaxPlayers[2] = 16;
 
$Host::Maps::MissionFile[3] = "legions/data/missions/DesertMap01.mis";
$Host::Maps::Weight[3] = 0.9;
$Host::Maps::MinPlayers[3] = 16;
$Host::Maps::MaxPlayers[3] = 32;
 
$Host::Maps::MissionFile[4] = "legions/data/missions/Fallout.mis";
$Host::Maps::Weight[4] = 0.9;
$Host::Maps::MinPlayers[4] = 16;
$Host::Maps::MaxPlayers[4] = 32;
 
$Host::Maps::MissionFile[5] = "legions/data/missions/Stygian.mis";
$Host::Maps::Weight[5] = 0.2;
$Host::Maps::MinPlayers[5] = 16;
$Host::Maps::MaxPlayers[5] = 32;
 
$Host::Maps::MissionFile[6] = "legions/data/missions/Elegiac.mis";
$Host::Maps::Weight[6] = 0.6;
$Host::Maps::MinPlayers[6] = 16;
$Host::Maps::MaxPlayers[6] = 32;
 
$Host::Maps::MissionFile[7] = "";
$Host::Maps::Weight[7] = "";
$Host::Maps::MinPlayers[7] = 0;
$Host::Maps::MaxPlayers[7] = 32;

Run the server like so:

Code:
./Legions.linux --log-dir=server1 --mod-list=modList_Server.txt --server-config=server1.cs

If you don't know how to run a dedicated server, please don't start creating bug reports that it doesn't work - thanks!

Useful feedback is welcome.
 

The_Horny_Rat

New Member
Its a shame we don't have any game server companys willing to install and setup this game to offer rented servers, since its so easy now. I emailed a few today asking if they would add it. Art of War Central, never even responded, I sent two emails.. We need a server company to offer professinal Legions game servers for rent, How hard can that BE.. :rolleyes:
 

Dabbleh

Legions Developer
Its a shame we don't have any game server companys willing to install and setup this game to offer rented servers, since its so easy now. I emailed a few today asking if they would add it. Art of War Central, never even responded, I sent two emails.. We need a server company to offer professinal Legions game servers for rent, How hard can that BE.. :rolleyes:
Pahaha, or just get a VPS and ask someone nicely to set it up for you.
 
Top