Mission Rotation – ArmA: Armed Assault

From Bohemia Interactive Community
Revision as of 12:30, 18 September 2023 by Lou Montana (talk | contribs) (Lou Montana moved page ArmA: Armed Assault: Mission rotation to ArmA: Armed Assault: Mission Rotation: Name standard)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
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