Jump to content
djporternz

Official MP Mission Names for Servers

Recommended Posts

Spent a heap of time looking for a list of the official MP mission names for use on our dedicated server and was unable to find a complete list of these in one post. After compiling this list I thought others might find it helpful.

missionWhitelist[] = {
	"MP_Bootcamp_01.Altis",			// ZGM 4+1 Bootcamp
	"MP_COOP_m01.Stratis", 			// COOP 10 Escape From Stratis
	"MP_COOP_m02.Stratis", 			// COOP 07 Headhunters
	"MP_COOP_m03.Altis", 			// COOP 10 Escape From Altis
	"MP_COOP_m04.Stratis",			// ZvP 10+1 Defend Kamino
	"MP_COOP_m05.Altis",			// ZvP 10+1 Defend Syrta
	"MP_COOP_m06.Altis",			// ZvP 10+1 Seize Edoris
	"MP_COOP_m07.Altis",			// ZvP 10+1 Seize Feres
	"MP_COOP_m08.Altis", 			// COOP 12 Tanks
	"MP_End_Game_02.Altis", 		// CTF 32 End Game Feres
	"MP_End_Game_03.Altis", 		// CTF 16 End Game Zaros
	"MP_GroundSupport01.Altis", 		// SC 06 Support Katalaki
	"MP_GroundSupport02.Altis", 		// SC 08 Support Sofia
	"MP_GroundSupport03.Altis", 		// SC 08 Support Pyrgos
	"MP_GroundSupport04.Altis", 		// COOP 04 Support Rodopoli
	"MP_GroundSupport05.Stratis", 		// COOP 05 Support Stratis
	"MP_Marksmen_01.Altis",			// CTF 16 End Game Kavala
	"MP_ZGM_m11.Altis",			// ZGM 48+2 Master Altis
	"MP_ZGM_m11_EAST.Altis",		// ZGM 16+2 Master Altis (CSAT)
	"MP_ZGM_m11_GUER.Altis",		// ZGM 16+2 Master Altis (AAF)
	"MP_ZGM_m11_WEST.Altis",		// ZGM 16+2 Master Altis (NATO)
	"MP_ZGM_m12.Stratis",			// ZGM 48+2 Master Stratis
	"MP_ZGM_m12_EAST.Stratis",		// ZGM 16+2 Master Stratis (CSAT)
	"MP_ZGM_m12_GUER.Stratis",		// ZGM 16+2 Master Stratis (AAF)
	"MP_ZGM_m12_WEST.Stratis",		// ZGM 16+2 Master Stratis (NATO)
	"MP_ZGM_m13.VR",			// ZGM 48+2 Master Virtual Reality
	"MP_ZGM_m13_EAST.VR",			// ZGM 16+2 Master Virtual Reality (CSAT)
	"MP_ZGM_m13_GUER.VR",			// ZGM 16+2 Master Virtual Reality (AAF)
	"MP_ZGM_m13_WEST.VR",			// ZGM 16+2 Master Virtual Reality (NATO)
	"MP_ZR_8_Karts01.Altis",		// ZR 8+1 Race on Altis (Karts)
	"MP_ZR_8_Karts02.Stratis",		// ZR 8+1 Race on Stratis (Karts)
	"MP_ZSC_m10.Altis",			// ZSC 32+2 Control Edessa
	"Showcase_Combined_arms.Stratis",	// COOP 08 Combined Arms
	"Showcase_FiringFromVehicles.Altis", 	// COOP 04 Firing From Vehicles
};

Edited by djporternz
  • Like 7

Share this post


Link to post
Share on other sites

Related Question:

 

I want to have the Tanoa 1.62 Apex missions on rotation. Does anybody know the official MP mission names?

Share this post


Link to post
Share on other sites

Related Question:

 

I want to have the Tanoa 1.62 Apex missions on rotation. Does anybody know the official MP mission names?

 

I understand that you need to put this in your missions class:

 

class ApexProtocol{};

 

So the mission class will look like this:

class Missions
{
class ApexProtocol {};
};

BUT, this is not currently working for me and I am troubleshooting it. Mission rotation in Apex Protocol should work standalone, I think.

 

I made a topic about it here.

Share this post


Link to post
Share on other sites

Thank you! I'll leave this here anyway.

// MISSIONS CYCLE (see below)

class Missions
{
        class exp_m01
                {
                        template = exp_m01.tanoa;
                        difficulty = "Regular";
                };
        class exp_m02
                {
                        template = exp_m02.tanoa;
                        difficulty = "Regular";
                };
        class exp_m03
                {
                        template = exp_m03.tanoa;
                        difficulty = "Regular";
                };
        class exp_m04
                {
                        template = exp_m04.tanoa;
                        difficulty = "Regular";
                };
        class exp_m05
                {
                        template = exp_m05.tanoa;
                        difficulty = "Regular";
                };
        class exp_m06
                {
                        template = exp_m06.tanoa;
                        difficulty = "Regular";
                };
        class exp_m07
                {
                        template = exp_m07.tanoa;
                        difficulty = "Regular";
				};		
};

missionWhitelist[] = 

{
        "exp_m01.tanoa",
        "exp_m02.tanoa",
        "exp_m03.tanoa",
        "exp_m04.tanoa",
        "exp_m05.tanoa",
        "exp_m06.tanoa",
        "exp_m07.tanoa"
};

Share this post


Link to post
Share on other sites

Does anyone know the missionfilenames for the tanoa endgame missions?

 

Google and Co was no help.

 

Thanks in advance :)

Share this post


Link to post
Share on other sites

Has anyone found the names for the new combat patrol in the addons folder? I haven't found them yet, and I kinda need the names.

 

Thanks,

Fire

 

Ok:  found them in the "Argo" folder:   I guess all the new missions:

 

"MP_CombatPatrol_01.Altis",

"MP_CombatPatrol_02.Stratis",

"MP_CombatPatrol_03.Tanoa",

"MP_CombatPatrol_04.Malden",

"MP_ZGM_m15.Malden",

"MP_ZGM_m15_EAST.Malden",

"MP_ZGM_m15_GUER.Malden",

"MP_ZGM_m15_WEST.Malden",

"EscapeFromMalden.Malden"

 

 

 

Edited by FireWalker
Don't put MP_ in front of the Escape misions

Share this post


Link to post
Share on other sites

Anyone get Escape Malden or Tanoa missions to work on a dedicated server? I can get the Combat Patrol ones to work:

class Missions{};
missionWhitelist[] = {"MP_CombatPatrol_01.Altis",
                        "MP_CombatPatrol_02.Stratis",
                        "MP_CombatPatrol_03.Tanoa",
                        "MP_CombatPatrol_04.Malden"};

but "MP_EscapeFromMalden.Malden" or "MP_EscapeFromTanoa.Tanoa" will not show up when I add them to a mission whitelist like this:

 

class Missions{};
missionWhitelist[] = {"MP_EscapeFromMalden.Malden",
                        "MP_EscapeFromTanoa.Tanoa"};

 

Share this post


Link to post
Share on other sites

Yea, I just double checked on my dedi. I'm also not seeing escape from malden. I double checked the spelling, it should be GTG. Not sure what the problem would be.

Share this post


Link to post
Share on other sites

Hello folks. Does anyone know how to get the official COOP14 maps from S.O.G. PF running on the dedicated server? What must be in the class missions?

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

×