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,...")
 
No edit summary
Line 22: Line 22:
};
};
</syntaxhighlight>
</syntaxhighlight>
==See Also==
*[[ArmA: Server configuration|Server Configuration]]
*[[Armed Assault:Dedicated Server]]
*[[ArmA: Server Side Scripting]]
*[[Operation Flashpoint:Dedicated Server]]
*[[Arma_3_Headless_Client]]
*[[Arma_3:_Server_Security]]
*[[Arma_3:_Mission_voting]]
*[[Arma_2_Mission_Rotation]]
*[[Arma_2_OA:_Multiple_Mission_Parameters_Configuration]]

Revision as of 09:02, 12 July 2017

Arma

The following example shows one for the missions included with the 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