Download ThirdRock

OBLIVION

Member
Small map, in the video it shows CTF but I took it off due to its size and the lack of routes so I just left it as TDM, and TeamRabbit, and assuming you dont know how to install a map just go to live/server/preferences/config and put this:

under the first half of it you put this down
$Host::Mission["TDM", "ThirdRock"] = 36;

then you scroll down and put this half

$Host::Maps::MissionFile[36] = $MissionPath @ "ThirdRock.mis";
$Host::Maps::Weight[36] = 0.65;
$Host::Maps::MinPlayers[36] = 0;
$Host::Maps::MaxPlayers[36] = 24;


Same thing with this one

$Host::Mission["TeamRabbit", "ThirdRock"] = 36;

$Host::Maps::MissionFile[36] = $MissionPath @ "ThirdRock.mis";
$Host::Maps::Weight[36] = 0.65;
$Host::Maps::MinPlayers[36] = 0;
$Host::Maps::MaxPlayers[36] = 24;

Change number 36 to whatever number you have in your config file like if its 40 you put it 41 etc.


Video:

Download
 
Last edited:
Seriously? Don't understand install instructions at all- Map looks like fun, but why not make it like other map makers where all you do is install the map folder into the Legions or the Interiors folders? I appreciate you taking the time to show how to install your map, but seeing as I can't write programs, your instructions aren't much help.
 

Fixious

Test Lead
That's the standard method for installing/hosting custom maps. An easier way is to simply plop the map files into the missions folder, then enter a command line to switch to it when hosting a game.

Code:
Server::loadMission("legions/data/missions/GrassMap01.mis", "CTF")
 
Top