Jump to content
Sign in to follow this  
[kh]jman

Maplist rotation?

Recommended Posts

I'm trying to setup a map rotation of the 3 CTF maps on my server. I have the syntax below in my server.cfg file:

class Missions

{

class Mission01

{

template = MP07CaptureTheFlag.Sara.pbo;

cadetMode = 1;

};

class Mission02

{

template = MP08CaptureTheFlag2.Sara.pbo;

cadetMode = 1;

};

class Mission03

{

template = MP09CaptureTheFlag3.Sara.pbo;

cadetMode = 1;

};

};

My question, is this correct? 'cause when I boot the dedi server the first map does not load...

Share this post


Link to post
Share on other sites

Try taking the ".pbo" extensions out.

<s>... or maybe enclose the mission file names with "quotation marks"</s>

class Missions

{

class MPCTF_01 // name for the mission, can be anything

{

template = M02CaptureTheFlag.SaraLite;

cadetMode = 1; // difficulty 0=veteran 1=cadet (not only AI, but radar, map etc)

};

class MPCOOP_01 // name for the mission, can be anything

{

template = M01Cooperative.SaraLite;

cadetMode = 1; // difficulty 0=veteran 1=cadet (not only AI, but radar, map etc)

};

class MPCTI_01 // name for the mission, can be anything

{

template = M03ConquerTheIsland.SaraLite;

cadetMode = 1; // difficulty 0=veteran 1=cadet (not only AI, but radar, map etc)

};

};

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×