Mission Rotation – ArmA: Armed Assault

From Bohemia Interactive Community
Jump to navigation Jump to search
(Created page with "==== Arma ==== The following example shows one for the missions included with the demo. <syntaxhighlight lang="c"> class Missions { class MPCTF_01 // name for the mission,...")
 
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==== Arma ====
{{Feature|arma1|This article is about {{arma1}}. For {{arma3}}, see {{Link|Arma 3: Server Config File#Mission Rotation}}.}}
The following example shows one for the missions included with the demo.  


<syntaxhighlight lang="c">
The following example shows one for the missions included with the {{Name|arma1|short}} demo.
 
<syntaxhighlight lang="cpp">
class Missions
class Missions
{
{
Line 22: Line 23:
};
};
</syntaxhighlight>
</syntaxhighlight>
== See Also ==
* [[server.cfg]]
* [[Operation Flashpoint:Dedicated Server]]
* [[ArmA: Server configuration|Server Configuration]]
* [[Armed Assault:Dedicated Server]]
* [[ArmA: Server Side Scripting]]
* [[Arma 2: Mission Rotation]]
* [[Arma 2 OA: Multiple Mission Parameters Configuration]]
* [[Arma 3: Headless Client]]
* [[Arma 3: Server Security]]
* [[Arma 3: Mission Voting]]
* {{Link|Arma 3: Server Config File#Mission Rotation}}
{{GameCategory|ofp|Multiplayer}}
{{GameCategory|arma1|Multiplayer}}

Latest revision as of 12:30, 18 September 2023

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