jossrack 10 Posted August 6, 2013 Hello, I have a dedicated server with several custom maps on it. It all works fine (and I have to muck it up apparently), but I want the user (when they log in) to be presented with the list of missions to select which one they want to play. I've seen this on other servers, but can't figure out how to do it on mine. I tried commenting out the // MISSIONS CYCLE section, but now I get stuck on the splash screen after I join the server. I've searched for this and haven't found the answer so I thought I would check with the community. I would appreciate any help and thank you in advance, Jim ---------- Post added at 07:24 ---------- Previous post was at 07:16 ---------- Sorry, Never mind! I forgot to comment out the last "{". It works just as I hoped now. Duh! (new to this) Share this post Link to post Share on other sites
SavageCDN 231 Posted August 6, 2013 For those reading this here's how your .cfg file needs to be setup for mission rotation: // Mission Rotation // Leave blank for standard Mission selection class Missions { class VGINS_SOAR_USA { template="insurgency0_80vg_j.takistan"; difficulty="regular";//can be recruit, regular, veteran, mercenary }; class VGINS_SOAR_TKA { template="insurgency0_80_tka_b.takistan"; difficulty="regular";//can be recruit, regular, veteran, mercenary }; class VGINS_SOAR_BAF { template="insurgency0_80bafa.takistan"; difficulty="regular";//can be recruit, regular, veteran, mercenary }; class VGINS_SOAR_ACR { template="insurgency1_50acrVANILLA.takistan"; difficulty="regular";//can be recruit, regular, veteran, mercenary }; }; Share this post Link to post Share on other sites