Can I create my own missionlist to run the missions in the order I want?
Sure you can. To create a custom missionlist follow this formula and place the commands at the end of your serverConfig.cs file. (Note: Shifter will create a missionlist for you automatically. This method is only if you require the missions to run is a specific order) exec(missionlist); MissionList::clear(); Missionlist::initNextMission(); $pref::lastmission = map1; MissionList::addMission(map1); MissionList::addMission(map2); MissionList::addMission(map3); MissionList::addMission(map4); $nextMission[map1] = map2; $nextMission[map2] = map3; $nextMission[map3] = map4; $nextMission[map4] = map1; Make sure the last line wraps the last mission back to the first mission.