Mission Rotation – ArmA: Armed Assault

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Lou Montana moved page Arma: Mission rotation to ArmA: Armed Assault: Mission rotation: Name standard)
m (Text replacement - "server.cfg" to "server config")
 
(One intermediate revision by the same user not shown)
Line 27: Line 27:
== See Also ==
== See Also ==


* [[server.cfg]]
* [[Arma 3: Server Config File|server config]]
* [[Operation Flashpoint:Dedicated Server]]
* [[Operation Flashpoint:Dedicated Server]]
* [[ArmA: Server configuration|Server Configuration]]  
* [[ArmA: Server configuration|Server Configuration]]  

Latest revision as of 14:36, 17 May 2024

Armed Assault
This article is about Armed Assault. For Arma 3, see Arma 3: Server Config File - Mission Rotation.

The following example shows one for the missions included with the ArmA demo.

class Missions
{
	class MPCTF_01 // name for the mission, can be anything
	{
		template = M02CaptureTheFlag.SaraLite; // omit the .pbo suffix
		cadetMode = 1; // difficulty 0=veteran 1=cadet
	};
	class MPCOOP_01
	{
		template = M01Cooperative.SaraLite;
		cadetMode = 1;
	};
	class MPCTI_01
	{
		template = M03ConquerTheIsland.SaraLite;
		cadetMode = 1;
	};
};


See Also