[kh]jman 49 Posted February 18, 2007 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
Metal Heart 0 Posted February 18, 2007 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