Lou Montana/Sandbox – User

From Bohemia Interactive Community
Jump to navigation Jump to search
(First Description.ext sharing)
(Second Description.ext sharing)
Line 1: Line 1:
<!-- sub-categories (2 equal signs) are left possible – for "Mission informations/Overview/*" for example -->
<!--
Level 2 titles: categories (Mission informations, Starting gear, etc.)
Level 3 titles: sub-categories are left possible – e.g "Mission informations/Overview/xxx" (currently none)
Level 4 titles: settings themselves
-->
 
<table>
<table>
<tr><td rowSpan="2" style="min-width: 18em">{{toclimit|limit=2}}</td><td>The Description.ext file sets the overall mission attributes, and defines some global entities that will be available to other scripts. It is placed in mission's [[Mission_Editor:_External#Mission_Folder|root]] folder. It uses the same syntax and structure as the [[Config.cpp]] file, but supports only a limited number of the full set of Config.cpp classes. Many, such as CfgAmmo, won't work.
<tr><td rowSpan="2" style="min-width: 18em">{{toclimit|limit=2}}</td><td>The Description.ext file sets the overall mission attributes, and defines some global entities that will be available to other scripts. It is placed in mission's [[Mission_Editor:_External#Mission_Folder|root]] folder. It uses the same syntax and structure as the [[Config.cpp]] file, but supports only a limited number of the full set of Config.cpp classes. Many, such as CfgAmmo, won't work.
Line 10: Line 15:




= Mission informations =
== Mission informations ==
This section helps you find out how to customise Mission overall external appearance, from [[Mission Overview]] to [[Loading Screens]].
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma|1.00}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma|1.00}}</div>
=== header ===
==== header ====
</div>
</div>
See [[Multiplayer Game Types]]
class Header
{
gameType = CTF; {{codecomment|// Game type}}
minPlayers = 1; {{codecomment|// minimum number of players the mission supports}}
maxPlayers = 10; {{codecomment|// maximum number of players the mission supports}}
};
See [[Multiplayer Game Types]] for more detailed informations.
 


=== onLoadMission ===
==== onLoadMission ====
Displays a message while the mission is loading. Note that a mission that takes very little time to load will only display the message for a short time. Care should be taken to see whether your message is readable in that timeframe.
Displays a message while the mission is loading. Note that a mission that takes very little time to load will only display the message for a short time.
Care should be taken to see whether your message is readable in that timeframe.
  onLoadMission = "YourMissionName";
  onLoadMission = "YourMissionName";
The '''OnLoadMission''' option is used to present the mission name to the user. In MP this is the name you see when selecting a mission and also the name that is presented to the MultiPlayer browser.
The '''OnLoadMission''' option is used to present the mission name to the user.
In MP this is the name you see when selecting a mission and also the name that is presented to the Multiplayer browser.
 


=== onLoadIntro ===
==== onLoadIntro ====
Displays a message while the intro is loading.
Displays a message while the intro is loading.
  onLoadIntro = "YourMessage"
  onLoadIntro = "YourMessage"


=== onLoadMissionTime ===
Define whether you will see the time and date displayed while the mission loads. 1 means visible, 0 hidden. Default: 1. Effect unkown in Arma 3
onLoadMissionTime = 1;


=== onLoadIntroTime ===
==== onLoadMissionTime ====
Define whether you will see the time and date displayed while the mission loads. Effect unkown in Arma 3.
onLoadMissionTime = 1; {{codecomment|// 0: disabled - 1: enabled. Default: 1}}
 
 
==== onLoadIntroTime ====
Define whether you will see the time and date displayed while the intro loads. 1 means visible, 0 hidden. Default: 0
Define whether you will see the time and date displayed while the intro loads. 1 means visible, 0 hidden. Default: 0
  onLoadIntroTime = 1;
  onLoadIntroTime = 1; {{codecomment|// 0: disabled - 1: enabled. Default: 0}}
 
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma2oa|1.51}}</div>


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma2oa|1.51}}</div>
==== loadScreen ====
=== loadScreen ===
</div>
</div>
You can define a picture to be shown while the mission is loaded.
You can define a picture to be shown while the mission is loaded.
Line 41: Line 61:
  loadScreen = "pictures\intro.paa";
  loadScreen = "pictures\intro.paa";


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.56}}</div>
 
=== briefingName ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.56}}</div>
==== briefingName ====
</div>
</div>
Mission name displayed in the mission selection menu.
Mission name displayed in the mission selection menu.
  briefingName = "TAG 1-5 CO My super mission";
  briefingName = "TAG 1-5 CO My super mission";


<div><div style="float: right; margin-left: 0.5em;">{{GVI|TKOH|1.00}}</div>
 
=== CfgLoadingTexts ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|TKOH|1.00}}</div>
==== CfgLoadingTexts ====
</div>
</div>
Define mission specific [[Loading_Screens#Texts|loading texts]].
Define mission specific [[Loading_Screens#Texts|loading texts]].


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|0.50}}</div>
 
=== onLoadName ===
[[File:2013-03-08_00004.jpg|thumb|Example load screen]]
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|0.50}}</div>
==== onLoadName ====
</div>
</div>
String (usually mission name) shown during [[Loading Screens|mission loading]]. The string is shown in a slightly larger font above the loadScreen. For example:
String (usually mission name) shown during [[Loading Screens|mission loading]]. The string is shown in a slightly larger font above the loadScreen. For example:
Line 60: Line 84:
  OnLoadMission = "A group of NATO soldiers is tasked with sabotaging a coastal defense.";
  OnLoadMission = "A group of NATO soldiers is tasked with sabotaging a coastal defense.";
  loadScreen = "images\loadScreen.paa";
  loadScreen = "images\loadScreen.paa";
This produces the pictured result. The [[#onLoadMission|onLoadMission]] text is placed below the load screen and the [[#header|header gameType]] determines the game time on top of the box.
This produces the pictured result. The [[#onLoadMission|onLoadMission]] text is placed below the load screen and the [[#header|header gameType]] determines the game type on top of the box.
[[Loading Screens]]
<div style="clear: right;"></div>
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|0.50}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|0.50}}</div>
=== author ===
==== author ====
</div>
</div>
Mission author's name. The default loading screen shows this string below the [[#onLoadName|onLoadName]] in a smaller font prefixed by "by ". See [[Loading Screens]]
Mission author's name. The default loading screen shows this string below the [[#onLoadName|onLoadName]] in a smaller font prefixed by "by ".
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|0.50}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|0.50}}</div>
=== overviewPicture ===
==== overviewPicture ====
</div>
</div>
Path to image which will be displayed when the mission is highlighted on the mission selection screen. Image should be .paa format and in 2:1 aspect ratio – ideally 1024x512 (Arma 3).
Path to image which will be displayed when the mission is highlighted on the mission selection screen. Image should be .paa format and in 2:1 aspect ratio – ideally 1024x512 (Arma 3).
See also [[Mission Overview]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|0.50}}</div>
 
=== overviewText ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|0.50}}</div>
==== overviewText ====
</div>
</div>
Text to be displayed below the [[#overviewPicture|overviewPicture]] on the mission selection screen when the mission is available to play.
Text to be displayed below the [[#overviewPicture|overviewPicture]] on the mission selection screen when the mission is available to play.
See also [[Mission Overview]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|0.50}}</div>
 
=== overviewTextLocked ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|0.50}}</div>
==== overviewTextLocked ====
</div>
</div>
Text to be displayed below the [[#overviewPicture|overviewPicture]] on the mission selection screen when the mission is locked from play.
Text to be displayed below the [[#overviewPicture|overviewPicture]] on the mission selection screen when the mission is locked from play.
[[Mission Overview]]




Line 90: Line 115:




= Respawn/Revive =
== Respawn/Revive ==
This section talks about respawn and revive actions.<br />
* for Arma 2, see [[First Aid]].
* for Arma 3, see [[Arma 3 Respawn]], [[Arma 3 Revive]] and [[Arma 3 Respawn: New Respawn Screen|Arma 3 New Respawn Screen]].
 


=== respawn ===
==== respawn ====
Sets respawn type.
Sets respawn type.


Line 113: Line 142:
* '''4''' or '''"GROUP"''' - Respawn in your group (if there's no AI left, you'll become a seagull).
* '''4''' or '''"GROUP"''' - Respawn in your group (if there's no AI left, you'll become a seagull).
* {{GVI|arma|1.08}} '''5''' or '''"SIDE"''' - Respawn into an AI unit on your side (if there's no AI left, you'll become a seagull). With this respawn type, team switch is also available to any AI controlled playable units.
* {{GVI|arma|1.08}} '''5''' or '''"SIDE"''' - Respawn into an AI unit on your side (if there's no AI left, you'll become a seagull). With this respawn type, team switch is also available to any AI controlled playable units.
[[#respawnDelay|respawnDelay]], [[#respawnVehicleDelay|respawnVehicleDelay]], [[#respawnDialog|respawnDialog]]


=== respawnButton ===
Enable or disable the respawn button in the menu for INSTANT and BASE respawn types. Default is 1 (enabled).
respawnButton = 0;
[[#respawn|respawn]], [[#respawnDialog|respawnDialog]]


=== respawnDelay ===
==== respawnButton ====
Enable or disable the respawn button in the menu for INSTANT and BASE respawn types.
respawnButton = 0; {{codecomment|// 0: disabled - 1: enabled. Default: 1}}
 
 
==== respawnDelay ====
Set respawn delay in seconds.
Set respawn delay in seconds.
  respawnDelay = 42;
  respawnDelay = 42;
[[#respawn|respawn]], [[#respawnVehicleDelay|respawnVehicleDelay]], [[#respawnDialog|respawnDialog]]


=== respawnVehicleDelay ===
 
==== respawnVehicleDelay ====
Set vehicle respawn delay in seconds.
Set vehicle respawn delay in seconds.
  respawnVehicleDelay = 11;
  respawnVehicleDelay = 11;
[[#respawn|respawn]], [[#respawnDelay|respawnDelay]], [[#respawnDialog|respawnDialog]]


=== respawnDialog ===
Show the scoreboard and respawn countdown timer for a player if he is killed with respawnType 3. Default is 1 (true).
respawnDialog = 0;
[[#respawn|respawn]], [[#respawnDelay|respawnDelay]], [[#respawnVehicleDelay|respawnVehicleDelay]]


=== respawnOnStart ===
==== respawnDialog ====
1 to respawn player when he joins the game. Available only for INSTANT and BASE respawn types.
Show the scoreboard and respawn countdown timer for a player if he is killed with [[#respawn|respawn]] type 3.
  respawnOnStart =  1; // Respawn on start. Run respawn script on start.
respawnDialog = 0; {{codecomment|// 0: disabled - 1: enabled. Default: 1}}
  respawnOnStart =  0; // Dont respawn on start. Run respawn script on start.
 
  respawnOnStart = -1; // Dont respawn on start. Don't run respawn script on start.
 
[[#respawn|respawn]], [[#respawnDelay|respawnDelay]], [[#respawnVehicleDelay|respawnVehicleDelay]]
==== respawnOnStart ====
Respawn player when he joins the game. Available only for INSTANT and BASE respawn types.
  respawnOnStart =  1; {{codecomment|// Respawn on start. Run respawn script on start.}}
  respawnOnStart =  0; {{codecomment|// Dont respawn on start. Run respawn script on start.}}
  respawnOnStart = -1; {{codecomment|// Dont respawn on start. Don't run respawn script on start.}}
 


=== respawnTemplates ===
==== respawnTemplates ====
Respawn templates from [[Arma_3_Respawn#Respawn_Templates|CfgRespawnTemplates]]. You can combine any number of them together.
Respawn templates from [[Arma_3_Respawn#Respawn_Templates|CfgRespawnTemplates]]. You can combine any number of them together.
  respawnTemplates[] = {"Counter","Wave"};
  respawnTemplates[] = { "Counter", "Wave" };
Side specific respawn templates can be specified with "<i>respawnTemplates<b>SIDE</b>[]</i>" where <i><b>SIDE</b></i> can be any playable side (e.g. <i>respawnTemplatesEast[]</i>). When such is undefined, general respawnTemplates are used instead.
{{Important|
[[#respawn|respawn]], [[#respawnDelay|respawnDelay]], [[#respawnVehicleDelay|respawnVehicleDelay]], [[Arma 3 Respawn]]
Side specific respawn templates can be specified with ''respawnTemplates'''''SIDE'''''[]'' where '''SIDE''' can be any playable side (West, East, Guer, Civ).
When such is undefined, general respawnTemplates are used instead.}}
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma|1.00}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma|1.00}}</div>
=== respawnWeaponsWest ===
==== respawnWeapons ====
=== respawnWeaponsEast ===
=== respawnWeaponsGuer ===
=== respawnWeaponsCiv ===
</div>
</div>
Set weapons corresponding side players will receive upon respawn. Its corresponding ''respawnMagazinesX'' has to be defined as well.
Set weapons players will receive upon respawn. [[#respawnMagazines|respawnMagazines]] has to be defined as well.
  respawnWeaponsGuer[] = { "arifle_Katiba_GL_F" };
  respawnWeapons[] = { "arifle_Katiba_GL_F" };
{{Important|
Side specific respawn weapons can be specified with ''respawnWeapons'''''SIDE'''''[]'' where '''SIDE''' can be any playable side (West, East, Guer, Civ).<br />
Corresponding ''respawnMagazines'''''SIDE'''''[]'' has to be defined as well.}}
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma|1.00}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma|1.00}}</div>
=== respawnMagazinesWest ===
==== respawnMagazines ====
=== respawnMagazinesEast ===
=== respawnMagazinesGuer ===
=== respawnMagazinesCiv ===
</div>
</div>
Set magazines corresponding side players will receive upon respawn. Its corresponding ''respawnWeaponsX'' has to be defined as well.
Set magazines players will receive upon respawn. [[#respawnWeapons|respawnWeapons]] has to be defined as well.
  respawnMagazinesGuer[] = { "30Rnd_65x39_caseless_green", "30Rnd_65x39_caseless_green" };
  respawnMagazines[] = { "30Rnd_65x39_caseless_green", "30Rnd_65x39_caseless_green" };
{{Important|
Side specific respawn weapons can be specified with ''respawnMagazines'''''SIDE'''''[]'' where '''SIDE''' can be any playable side (West, East, Guer, Civ).<br />
Corresponding ''respawnWeapons'''''SIDE'''''[]'' has to be defined as well.}}
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.62}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.62}}</div>
=== ReviveMode ===
==== ReviveMode ====
</div>
</div>
  ReviveMode = 1; // 0: disabled, 1: enabled, 2: controlled by player attributes
Define if Revive mode is enabled.
[[Arma 3 Revive|Revive]]
  ReviveMode = 1; {{codecomment|// 0: disabled - 1: enabled - 2: controlled by player attributes. Default: 0}}
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.62}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.62}}</div>
=== ReviveUnconsciousStateMode ===
==== ReviveUnconsciousStateMode ====
</div>
</div>
  ReviveUnconsciousStateMode = 0; // 0: basic, 1: advanced, 2: realistic
  ReviveUnconsciousStateMode = 0; {{codecomment|// 0: basic - 1: advanced - 2: realistic. Default: 0 – see [[Arma 3 Revive#Damage Modeling|damage model]] for more detailed informations.}}
[[Arma 3 Revive|Revive]]
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.62}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.62}}</div>
=== ReviveRequiredTrait ===
==== ReviveRequiredTrait ====
</div>
</div>
  ReviveRequiredTrait = 0; // 0: none, 1: medic trait is required
Define if only a medic (or unit with medic [[setUnitTrait|trait]]) can perform a revive.
[[Arma 3 Revive|Revive]]
  ReviveRequiredTrait = 0; {{codecomment|// 0: disable - 1: enable. Default: 0}}
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.62}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.62}}</div>
=== ReviveRequiredItems ===
==== ReviveRequiredItems ====
</div>
</div>
  ReviveRequiredItems = 2; // 0: none, 1: medkit, 2: medkit or first aid kit
Define if a medical item (first aid kit or medkit) is required to begin a revive process.
[[Arma 3 Revive|Revive]]
  ReviveRequiredItems = 2; {{codecomment|// 0: none - 1: medkit - 2: medkit or first aid kit. Default: ?}}
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.62}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.62}}</div>
=== ReviveRequiredItemsFakConsumed ===
==== ReviveRequiredItemsFakConsumed ====
</div>
</div>
  ReviveRequiredItemsFakConsumed = 1; // 0: first aid kit is not consumed upon revive, 1: first aid kit is consumed
Define if a first aid kit is consumed on reviving a teammate
[[Arma 3 Revive|Revive]]
  ReviveRequiredItemsFakConsumed = 1; {{codecomment|// 0: disable - 1: enable. Default: ?}}
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.62}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.62}}</div>
=== ReviveMedicSpeedMultiplier ===
==== ReviveMedicSpeedMultiplier ====
</div>
</div>
Speed multiplier for revive performed by medic
Speed multiplier for revive performed by medic
  ReviveMedicSpeedMultiplier = 2;
  ReviveMedicSpeedMultiplier = 2; {{codecomment|// medic revive will be two times faster compared to another soldier}}
[[Arma 3 Revive|Revive]]
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.62}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.62}}</div>
=== reviveDelay  ===
==== reviveDelay  ====
</div>
</div>
The time it takes to revive an incapacitated unit (default: 6 seconds). Having a Medikit will halve this time.
The time in seconds it takes to revive an incapacitated unit. Having a Medikit will halve this time.
  reviveDelay = 6;
  reviveDelay = 6; {{codecomment|// Default: 6}}
[[Arma 3 Revive|Revive]]
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.62}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.62}}</div>
=== reviveForceRespawnDelay  ===
==== reviveForceRespawnDelay  ====
</div>
</div>
The time it takes for an incapacitated unit to force their respawn (default: 3 seconds).
The time in seconds it takes for an incapacitated unit to force their respawn.
  reviveForceRespawnDelay = 3;
  reviveForceRespawnDelay = 3; {{codecomment|// Default: 3}}
[[Arma 3 Revive|Revive]]
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.62}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.62}}</div>
=== reviveBleedOutDelay  ===
==== reviveBleedOutDelay  ====
</div>
</div>
The time it takes for a unit to bleed out (default: 2 minutes).
The time in seconds it takes for a unit to bleed out.
  reviveBleedOutDelay = 120;
  reviveBleedOutDelay = 300; {{codecomment|// Default: 120}}
[[Arma 3 Revive|Revive]]
 








== Mission keys ==
Mission keys are used to lock/unlock certain missions until you completed other ones. It can also be used in mission to know which missions you finished.<br />
Activated keys can be found in user profile (e.g documents\''username.Arma3profile'') under ''activeKeys'' section.<br />
See also commands [[activateKey]], [[isKeyActive]] and [[deActivateKey]] for more detailed informations.


= Mission keys =


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma|1.00}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma|1.00}}</div>
=== keys ===
==== keys ====
</div>
</div>
List of keys (needed for keysLimit)
List of keys (needed for keysLimit)
  keys[] = { "key1", "key2", "key3" };
  keys[] = { "key1", "key2", "key3" };
Note that unlike other 'text' items $STR_ variables (in the stringtable.csv for the mission) cannot be used
Note that unlike other 'text' items, [[Stringtable.xml|stringtable]] translations ($STR_*) cannot be used
[[#keysLimit|keysLimit]], [[#doneKeys|doneKeys]]
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma|1.00}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma|1.00}}</div>
=== keysLimit ===
==== keysLimit ====
</div>
</div>
Number of keys from the [[#keys|keys]] list needed for unlock a mission.
Number of keys from the [[#keys|keys]] list needed for unlock a mission.
  keysLimit = 2;
  keysLimit = 2;
[[#keys|keys]], [[#doneKeys|doneKeys]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma|1.00}}</div>
 
=== doneKeys ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma|1.00}}</div>
==== doneKeys ====
</div>
</div>
Name of key(s) needed for mark a mission in SP missions list as completed.
Name of key(s) needed for mark a mission in SP missions list as completed.
  doneKeys[] = {"key4"};
  doneKeys[] = { "key4" };
Note that unlike other 'text' items $STR_ variables (in the stringtable.csv for the mission) cannot be used
Note that unlike other 'text' items, [[Stringtable.xml|stringtable]] translations ($STR_*) cannot be used


Keys can be activated using [[activateKey]] and checked by [[isKeyActive]].
[[#keys|keys]], [[#keysLimit|keysLimit]]








== player's UI ==
This section explains HUD customisation possibilities.<br />
See also commands:
* [[showCompass]], [[shownCompass]], [[visibleCompass]]
* [[showGPS]], [[shownGPS]], [[visibleGPS]]
* [[showHUD]], [[shownHUD]]
* [[showWatch]], [[shownWatch]], [[visibleWatch]]
* [[showUAVFeed]], [[shownUAVFeed]] {{GVI|arma3|1.16}}
* [[showPad]], [[shownPad]] {{GVI|ofp|1.00}}


= player's UI =


=== showHUD ===
==== showHUD ====
Enables/Disables the following IGUI elements:
Enables/Disables the following IGUI elements:
* Vehicle and Unit Info
* Vehicle and Unit Info
Line 269: Line 315:
* Commanding Menu
* Commanding Menu
* Group Info Bar
* Group Info Bar
  showHUD = 0;
  showHUD = 0; {{codecomment|// 0: disabled - 1: enabled. Default: 1}}
The effect of using the above ''showHUD'' param is different from the effects of [[showHUD]] scripting command, both methods are rather complementary to each other.<br />
The effect of using the above ''showHUD'' param is different from the effects of [[showHUD]] scripting command, both methods are rather complementary to each other.<br />
As of Arma 3 v1.49.131879 ''showHUD'' param could be an array to allow control over separate HUD elements, for example:
As of Arma 3 v1.49.131879 ''showHUD'' param could be an array to allow control over separate HUD elements, for example:
  showHUD[] = {
  showHUD[] = {
  true, // Scripted HUD (same as showHUD command)
  true, {{codecomment|// Scripted HUD (same as showHUD command)}}
  true, // Vehicle + soldier info
  true, {{codecomment|// Vehicle + soldier info}}
  false, // Vehicle radar [HIDDEN]
  false, {{codecomment|// Vehicle radar [HIDDEN]}}
  false, // Vehicle compass [HIDDEN]
  false, {{codecomment|// Vehicle compass [HIDDEN]}}
  true, // Tank direction indicator
  true, {{codecomment|// Tank direction indicator}}
  true, // Commanding menu
  true, {{codecomment|// Commanding menu}}
  true, // Group Bar
  true, {{codecomment|// Group Bar}}
  true, // HUD Weapon Cursors
  true, {{codecomment|// HUD Weapon Cursors}}
  true // Vehicle display panels
  true {{codecomment|// Vehicle display panels}}
  };
  };
'''NOTE:''' adding new ''showHUD[]'' array param to ''description.ext'' will also disable scripted command [[showHUD]] entirely.
'''NOTE:''' adding new ''showHUD[]'' array param to ''description.ext'' will also disable scripted command [[showHUD]] entirely.
[[showHUD]], [[shownHUD]]


=== showCompass ===
 
==== showCompass ====
Defines if the compass is visible.
Defines if the compass is visible.
  showCompass = 0;
  showCompass = 0; {{codecomment|// 0: disable - 1: enable. Default: 1}}
[[showCompass]], [[shownCompass]], [[visibleCompass]]


=== showGPS ===
==== showGPS ====
Enables/Disables the GPS
Enables/Disables the GPS
  showGPS = 0;
  showGPS = 0; {{codecomment|// 0: disable - 1: enable. Default: 1}}
In [[ArmA]] ''1.04'' toggle this option to disable the mini map attached to the GPS.
In [[ArmA]] ''1.04'' toggle this option to disable the mini map attached to the GPS.
[[showGPS]], [[shownGPS]], [[visibleGPS]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.00}}</div>
 
=== showGroupIndicator ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.00}}</div>
==== showGroupIndicator ====
</div>
</div>
When set to 1, changes default GPS mini map into a radar like display that indicates group members relative position to the player
When set to 1, changes default GPS mini map into a radar like display that indicates group members relative position to the player
  showGroupIndicator = 1; // <b>Has no effect since custom panels were introduced in Arma 3</b>
  showGroupIndicator = 1; {{codecomment|// 0: disabled - 1: enabled. Default: 0. <b>Has no effect since custom panels were introduced in Arma 3</b>}}
 


=== showMap ===
==== showMap ====
Defines if the map is shown after the mission starts.
Defines if the map is shown after the mission starts.
  showMap = 0;
  showMap = 0; {{codecomment|// 0: disabled - 1: enabled. Default: 1}}
[[showMap]], [[shownMap]]
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma|1.00}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma|1.00}}</div>
=== showNotePad ===
==== showNotePad ====
</div>
</div>
In ArmA, defines if the NotePad is shown after the mission starts.
In ArmA, defines if the NotePad is shown after the mission starts.
  showNotePad = 0;
  showNotePad = 0; {{codecomment|// 0: disabled - 1: enabled. Default: 1}}
 


<div><div style="float: right; margin-left: 0.5em;">only in {{GVI|ofp|1.00}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|ofp|1.00}}</div>
=== showPad ===
==== showPad ====
</div>
</div>
Defines if the NotePad is shown after the mission starts. Arma:CWC only.
Defines if the NotePad is shown after the mission starts. '''Only in OFP:CWC'''.
  showPad = 0;
  showPad = 0; {{codecomment|// 0: disabled - 1: enabled. Default: 1}}
[[showPad]], [[shownPad]]
 


=== showWatch ===
==== showWatch ====
Defines if the watch is visible.
Defines if the watch is visible.
  showWatch = 0;
  showWatch = 0; {{codecomment|// 0: disabled - 1: enabled. Default: 1}}
[[showWatch]], [[shownWatch]], [[visibleWatch]]
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.16}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.16}}</div>
=== showUAVFeed ===
==== showUAVFeed ====
</div>
</div>
Enables/Disables the UAV Feed. Default: 1.
Enables/Disables the UAV Feed.
  showUAVFeed = 0;
  showUAVFeed = 0; {{codecomment|// 0: disabled - 1: enabled. Default: 1}}
[[showUAVFeed]], [[shownUAVFeed]]
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.60}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.60}}</div>
=== showSquadRadar ===
==== showSquadRadar ====
Defines if the Squad Radar is visible.
Defines if the Squad Radar is visible.
  showSquadRadar = 0;
  showSquadRadar = 0; {{codecomment|// 0: disabled - 1: enabled. Default: 0}}
 








== Starting gear ==
Starting gear points to briefing-available equipment. For respawn equipment, see [[#Respawn/Revive]].<br />
See also [[:Category:Command_Group:_Weapon_Pool|Command Group: Weapon Pool]]  for more detailed informations about weapon pool system.


= Starting gear =


=== weapons ===
==== weapons ====
Set weapons available to players during the briefing.
Set weapons available to players during the briefing.
  class Weapons  
  class Weapons  
Line 352: Line 402:
  class Binocular { count = 2; };
  class Binocular { count = 2; };
  };
  };
[[#magazines|magazines]], [[#backpacks|backpacks]]


=== magazines ===
 
==== magazines ====
Set magazines available to players during the briefing.
Set magazines available to players during the briefing.
  class Magazines  
  class Magazines  
  {
  {
  class 30Rnd_545x39_AK { count = 32; };
  class 30Rnd_545x39_AK { count = 32; };
  class PG7V { count = 6; };
  class PG7V { count = 6; };
  class HandGrenade { count = 16; };
  class HandGrenade { count = 16; };
  };
  };
[[#weapons|weapons]], [[#backpacks|backpacks]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma2oa|1.51}}</div>
 
=== backpacks ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma2oa|1.51}}</div>
==== backpacks ====
</div>
</div>
Set [[ArmA 2 OA: Backpacks|backpacks]] available to players during the briefing.
Set [[ArmA 2 OA: Backpacks|backpacks]] available to players during the briefing.
  class Backpacks  
  class Backpacks  
  {
  {
  class US_Patrol_Pack_EP1 {count = 4;};
  class US_Patrol_Pack_EP1 { count = 4; };
  class US_Assault_Pack_EP1 {count = 4;};
  class US_Assault_Pack_EP1 { count = 4; };
  };
  };
[[#weapons|weapons]], [[#magazines|magazines]]


=== weaponPool ===
 
==== weaponPool ====
Allows equipment transferred from one campaign mission to the next to be available during the briefing in the gear menu.
Allows equipment transferred from one campaign mission to the next to be available during the briefing in the gear menu.
  weaponPool = 1;
  weaponPool = 1;
See also [[:Category:Command_Group:_Weapon_Pool|Command Group: Weapon Pool]].


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma2oa|1.56}}</div>
 
=== allowSubordinatesTakeWeapons ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma2oa|1.56}}</div>
==== allowSubordinatesTakeWeapons ====
</div>
</div>
Allows subordinates (i.e., not leaders) to equip items defined in [[#weapons|weapons]], [[#magazines|magazines]] and [[#backpacks|backpacks]].
Allows subordinates (i.e., not leaders) to equip items defined in [[#weapons|weapons]], [[#magazines|magazines]] and [[#backpacks|backpacks]].
  allowSubordinatesTakeWeapons = 1;
  allowSubordinatesTakeWeapons = 1; {{codecomment|// 0: disabled - 1: enabled. Default: ?}}
 








== Corpse & wreck management ==
This section explains how to use game-included '''garbage collector''' ('''GC''') for better performances.<br />
See also commands:
* [[addToRemainsCollector]]
* [[isInRemainsCollector]]
* [[removeFromRemainsCollector]]


= Corpse & wreck management =


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.32}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.32}}</div>
=== corpseManagerMode ===
==== corpseManagerMode ====
</div>
</div>
Sets the mode for corpse removal manager.
Sets the mode for corpse removal manager.
  corpseManagerMode = 0;
  corpseManagerMode = 0; {{codecomment|// Default: 0 for SP, 2 for MP}}
0 = None - None of the units are managed by the manager<br />
* 0 = None - None of the units are managed by the manager
1 = All - All units are managed by the manager<br />
* 1 = All - All units are managed by the manager
2 = None_But_Respawned - Only units that can respawn are managed by the manager<br />
* 2 = None_But_Respawned - Only units that can respawn are managed by the manager
3 = All_But_Respawned - All units are managed by the manager with exception of respawned (opposite to mode 2)<br />
* 3 = All_But_Respawned - All units are managed by the manager with exception of respawned (opposite to mode 2)
Default value: 0 for SP, 2 for MP<br />
 
[[#wreckManagerMode|wreckManagerMode]], [[addToRemainsCollector]], [[isInRemainsCollector]], [[removeFromRemainsCollector]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|0.50}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|0.50}}</div>
=== corpseLimit ===
==== corpseLimit ====
</div>
</div>
Corpse limit before which ( <= ) [[#corpseRemovalMaxTime|corpseRemovalMaxTime]] applies and after which ( > ) [[#corpseRemovalMinTime|corpseRemovalMinTime]] applies (see below).
Corpse limit before which ( <= ) [[#corpseRemovalMaxTime|corpseRemovalMaxTime]] applies and after which ( > ) [[#corpseRemovalMinTime|corpseRemovalMinTime]] applies.
  corpseLimit = 1;
  corpseLimit = 1;
Default value: 15
Default value: 15
[[#wreckeLimit|wreckLimit]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|0.50}}</div>
 
=== corpseRemovalMinTime ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|0.50}}</div>
==== corpseRemovalMinTime ====
</div>
</div>
Remove all bodies that have been dead longer than '''corpseRemovalMinTime''' when [[#corpseLimit|corpseLimit]] is breached.
Remove all bodies that have been dead longer than '''corpseRemovalMinTime''' when [[#corpseLimit|corpseLimit]] is breached.
  corpseRemovalMinTime = 60; //seconds
  corpseRemovalMinTime = 60; {{codecomment|// seconds. Default: 10}}
Default value: 10
Default value: 10
[[#wreckeRemovalMinTime|wreckRemovalMinTime]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|0.50}}</div>
 
=== corpseRemovalMaxTime ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|0.50}}</div>
==== corpseRemovalMaxTime ====
</div>
</div>
Maximum time a corpse can remain on the ground if total number of corpses is equal or under [[#corpseLimit|corpseLimit]].
Maximum time a corpse can remain on the ground if total number of corpses is equal or under [[#corpseLimit|corpseLimit]].
  corpseRemovalMaxTime = 1200; //seconds
  corpseRemovalMaxTime = 1200; {{codecomment|// seconds. Default: 3600}}
Default value: 3600
 
[[#wreckeRemovalMaxTime|wreckRemovalMaxTime]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.32}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.32}}</div>
=== wreckManagerMode ===
==== wreckManagerMode ====
</div>
</div>
  Sets the mode for wreck removal manager.
  Sets the mode for wreck removal manager.
  wreckManagerMode = 0;
  wreckManagerMode = 0; {{codecomment|// Default: 0 for SP, 2 for MP}}
0 = None - None of the vehicles are managed by the manager<br />
0 = None - None of the vehicles are managed by the manager
1 = All - All vehicles are managed by the manager<br />
1 = All - All vehicles are managed by the manager
2 = None_But_Respawned - Only vehicles that can respawn are managed by the manager<br />
2 = None_But_Respawned - Only vehicles that can respawn are managed by the manager
3 = All_But_Respawned - All vehicles are managed by the manager with exception of respawned (opposite to mode 2)<br />
3 = All_But_Respawned - All vehicles are managed by the manager with exception of respawned (opposite to mode 2)
Default value: 0 for SP, 2 for MP<br />
 
[[#corpseManagerMode|corpseManagerMode]], [[addToRemainsCollector]], [[isInRemainsCollector]], [[removeFromRemainsCollector]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|0.50}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|0.50}}</div>
=== wreckLimit ===
==== wreckLimit ====
</div>
</div>
Vehicle wreck limit before which ( <= ) [[#wreckRemovalMaxTime|wreckRemovalMaxTime]] applies and after which ( > ) [[#wreckRemovalMinTime|wreckRemovalMinTime]] applies (see below).
Vehicle wreck limit before which ( <= ) [[#wreckRemovalMaxTime|wreckRemovalMaxTime]] applies and after which ( > ) [[#wreckRemovalMinTime|wreckRemovalMinTime]] applies .
  wreckLimit = 1;
  wreckLimit = 1; {{codecomment|//seconds. Default: 15}}
Default value: 15<br />
 
[[#corpseLimit|corpseLimit]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|0.50}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|0.50}}</div>
=== wreckRemovalMinTime ===
==== wreckRemovalMinTime ====
</div>
</div>
Remove all wrecks that have existed longer than '''wreckRemovalMinTime''' when [[#wreckLimit|wreckLimit]] is breached.
Remove all wrecks that have existed longer than '''wreckRemovalMinTime''' when [[#wreckLimit|wreckLimit]] is breached.
  wreckRemovalMinTime = 60; //seconds
  wreckRemovalMinTime = 60; {{codecomment|// seconds. Default: 10}}
Default value: 10<br />
 
[[#corpseRemovalMinTime|corpseRemovalMinTime]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|0.50}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|0.50}}</div>
=== wreckRemovalMaxTime ===
==== wreckRemovalMaxTime ====
</div>
</div>
Maximum time a wreck can remain on the ground if total number of wrecks is equal or under [[#wreckLimit|wreckLimit]].
Maximum time a wreck can remain on the ground if total number of wrecks is equal or under [[#wreckLimit|wreckLimit]].
  wreckRemovalMaxTime = 1200; //seconds
  wreckRemovalMaxTime = 1200; {{codecomment|// seconds. Default: 36000 (10 hours)}}
Default value: 36000 (10 hrs)<br />
 
[[#corpseRemovalMaxTime|corpseRemovalMaxTime]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.66}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.66}}</div>
=== minPlayerDistance ===
==== minPlayerDistance ====
</div>
</div>
The minimum distance between corpse or wreck and nearest player before the corpse or wreck is allowed to be removed by the garbage collector.
The minimum distance between corpse or wreck and nearest player before the corpse or wreck is allowed to be removed by the garbage collector.
  minPlayerDistance = 50; //meters
  minPlayerDistance = 50; {{codecomment|// meters. Default: 0}}
Default value: 0<br />
 
[[#corpseRemovalMaxTime|corpseRemovalMaxTime]]
 






== Mission parameters ==
Mission parameters allow you to add settings to your creation. These settings are in-game accessible only in Multiplayer mode, but can also be accessed by commands for a scripted use in Singleplayer mode.<br />
for Arma 3, see [[Arma 3 Mission Parameters]].<br />
See also commands [[BIS_fnc_getParamValue]] ([[paramsArray]] usage is not recommended).




= Mission parameters =
==== titleParam%, valuesParam%, defValueParam%, textParam% ====
'''titleParam1''' and '''titleParam2''' (% in title is replaced either by 1 or 2) are multiplayer options.
These options are seen in the lobby of a multiplayer game.
These options can be useful for setting time limits and score limits in such games as Capture the Flag and Death Matches.
Other popular uses include accelerate time, setting the mission difficulty or switching the intro on/off.


=== titleParam% ===
{{Important|While '''param1'''/'''param2''' were introduced in OFP:CWC and can still be used in later titles, it is highly recommended to use config class [[#params|params]].
'''titleParam1''' and '''titleParam2''' (% in title is replaced either by 1 or 2) are multiplayer options. These options are seen in the lobby of a multiplayer game. These options can be useful for setting time limits and score limits in such games as Capture the Flag and Death Matches. Other popular uses include accelerate time, setting the mission difficulty or switching the intro on/off.
}}


In the mission '''param1''' and '''param2''' have the values of the chosen options. Many people will assign a variable in the [[Init.sqs|init.sqs]] file to '''param1''' for simplicity, an example of this would be to assign variable ''timelimit''&nbsp;=&nbsp;'''param1'''.
In the mission '''param1''' and '''param2''' have the values of the chosen options.
  titleParam1 = "Time limit:";
  titleParam1 = "Time limit:";
  valuesParam1[] = {0, 300, 600, 900};
  valuesParam1[] = { 0, 300, 600, 900 };
  defValueParam1 = 900;
  defValueParam1 = 900;
  textsParam1[] = {"Unlimited", "5 min", "10 min", "15 min"};
  textsParam1[] = { "Unlimited", "5 min", "10 min", "15 min" };
 
  titleParam2 = "Score to win:";
  titleParam2 = "Score to win:";
  valuesParam2[] = {10000, 5, 7, 10, 15, 20, 25, 30};
  valuesParam2[] = { 10000, 5, 7, 10, 15, 20, 25, 30 };
  defValueParam2 = 5;
  defValueParam2 = 5;
  textsParam2[] = {"Unlimited", 5, 7, 10, 15, 20, 25, 30};
  textsParam2[] = { "Unlimited", 5, 7, 10, 15, 20, 25, 30 };


=== valuesParam% ===
Example:
See [[#titleParam%|titleParam%]]
hint format ["param1 = %1\nparam2 = %2", param1, param2];
[[#titleParam%|titleParam%]]


=== defValueParam% ===
See [[#titleParam%|titleParam%]]
[[#titleParam%|titleParam%]]


=== textsParam% ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma2|1.03}}</div>
See [[#titleParam%|titleParam%]]
==== params ====
[[#titleParam%|titleParam%]]
</div>
See [[Arma 3 Mission Parameters]] for more detailed informations.


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma2|1.03}}</div>
=== params ===
</div>
See [[Arma 3 Mission Parameters]]








== Mission settings ==
These are non-editable, mission maker design settings.
They can be used for a smoother experience, briefing/debriefing behaviour, saving options, etc.<br />
See also [[Debriefing]] for more detailed informations.


= Mission settings =


=== aiKills ===
==== aiKills ====
Enables scorelist for AI players
Enables scorelist for AI players
  aiKills = 1;
  aiKills = 1;


=== briefing ===
 
==== briefing ====
Skip briefing screen for SP missions. If no briefing.html is present, it is skipped anyway.
Skip briefing screen for SP missions. If no briefing.html is present, it is skipped anyway.
  briefing = 0;
  briefing = 0; {{codecomment|// 0: disabled - 1: enabled. Default: 1}}
Briefing will still be displayed until all clients are connected and done loading.
Briefing will still be displayed until all clients are connected and done loading.


=== debriefing ===
 
==== debriefing ====
Defines if the debriefing is shown or not at the end of the mission.
Defines if the debriefing is shown or not at the end of the mission.
  debriefing = 0;
  debriefing = 0; {{codecomment|// 0: disabled - 1: enabled. Default: 1}}
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|0.50}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|0.50}}</div>
=== CfgDebriefing ===
==== CfgDebriefing ====
</div>
</div>
Define custom mission endings or override the default endings (found under CfgDebriefing in the game's config file).
Define custom mission endings or override the default endings (found under CfgDebriefing in the game's config file).
  class CfgDebriefing
  class CfgDebriefing
  {
  {
  // Used when all players die in MP
  {{codecomment|// Used when all players die in MP}}
  class endDeath
  class endDeath
  {
  {
title = "Both teams have died.";
title = "Both teams have died.";
description = "Everyone was killed by the bomb.";
description = "Everyone was killed by the bomb.";
picture = "KIA";
picture = "KIA";
  };
  };
  };
  };
[[Debriefing]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|0.50}}</div>
 
=== CfgDebriefingSections ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|0.50}}</div>
==== CfgDebriefingSections ====
</div>
</div>
Define custom sections to be displayed on the debriefing screen. Useful for custom scoring systems or displaying player achievements.
Define custom sections to be displayed on the debriefing screen. Useful for custom scoring systems or displaying player achievements.
Line 561: Line 618:
  };
  };
  };
  };
[[Debriefing]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma2oa|1.62}}</div>
 
=== disableChannels ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma2oa|1.62}}</div>
==== disableChannels ====
</div>
</div>
Disable global, side, command and system chat. MOTD and admin say have exception and will show in global. Introduced in Arma 2 Arrowhead BETA 1.60.93398.
Disable global, side, command and system chat. MOTD and admin say have exception and will show in global. Introduced in Arma 2 Arrowhead BETA 1.60.93398.
  disableChannels[] = { <channelID>, <channelID> … }; // old syntax
{{codecomment|// old syntax}}
  disableChannels[] = { <channelID>, <channelID> … };
  Example:  disableChannels[] = { 0, 1, 2 };
  Example:  disableChannels[] = { 0, 1, 2 };
  disableChannels[] = { { <channelID>, <disableChat>, <disableVoice> }, … }; // new syntax
{{codecomment|// new syntax}}
  disableChannels[] = { { <channelID>, <disableChat>, <disableVoice> }, … };
  Example:  disableChannels[] = { { 0, true, true }, { 1, true, false }, … };
  Example:  disableChannels[] = { { 0, true, true }, { 1, true, false }, … };


Line 584: Line 644:
*disableVoice: [[Boolean|boolean]]
*disableVoice: [[Boolean|boolean]]


=== disabledAI ===
When 1, removes all playable units which do not have a human player. When 0, a logging out player will have AI take control of his character. Default value is 0. (MP)
disabledAI = 1;
Disabling all the AI units will prevent [[JIP]] into playable units.


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.42}}</div>
==== disabledAI ====
=== disableRandomization ===
Multiplayer setting that removes all playable units which do not have a human player.<br />
When AI is disabled, a player logging out will '''not''' have AI take control of his character.
{{Important|Disabling AI units will prevent [[JIP]] into playable units.}}
disabledAI = 1; {{codecomment|// 0: disabled - 1: enabled. Default: 0}}
 
 
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.42}}</div>
==== disableRandomization ====
</div>
</div>
Disables randomization on certain objects, object types or object kinds in the mission.
Disables randomization on certain objects, object types or object kinds in the mission.
  disableRandomization[] = {"All", "AllVehicles", "B_G_Offroad_01_F", "myCar", "MyUnitName", "B_Soldier_F"};
  disableRandomization[] = { "All", "AllVehicles", "B_G_Offroad_01_F", "myCar", "MyUnitName", "B_Soldier_F" };
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|0.50}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|0.50}}</div>
=== enableDebugConsole ===
==== enableDebugConsole ====
</div>
</div>
Allows access to the [[Mission_Editor:_Debug_Console_(Arma_3)|Debug Console]] outside of the editor during normal gameplay  
Allows access to the [[Mission_Editor:_Debug_Console_(Arma_3)|Debug Console]] outside of the editor during normal gameplay  
  enableDebugConsole = 2; //dangerous in MP
  enableDebugConsole = 2; {{codecomment|// dangerous in MP}}
0 = Default behavior, available only in editor<br />
* 0 = Default behavior, available only in editor
1 = Available in SP and for hosts / logged in admins<br />
* 1 = Available in SP and for hosts / logged in admins
2 = Available for everyone<br />
* 2 = Available for everyone
 
Alternative since {{GVI|arma3|1.72}}
enableDebugConsole[] = {"76561198XXXXXXXXX"}; {{codecomment|// player with the UID and admin has access}}


Alternative since 1.72
// player with the UID and admin has access
enableDebugConsole[] = {"76561198XXXXXXXXX"};
[[Mission_Editor:_Debug_Console]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma2oa|1.62}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma2oa|1.62}}</div>
=== enableItemsDropping ===
==== enableItemsDropping ====
</div>
</div>
Disable dropping items while swimming. Introduced in BETA 1.60.93965.
Disable dropping items while swimming. Introduced in BETA 1.60.93965.
  enableItemsDropping = 0; // 0 = Disable, 1 = Enable - default = ?
  enableItemsDropping = 0; {{codecomment|// 0: disabled - 1: enabled. Default: ?}}
 
 
==== enableTeamSwitch ====
Enables or disables [[Team Switch]] functionality in MP when [[#respawn|respawn]] type is 5 (SIDE).
enableTeamSwitch = 0; {{codecomment|// 0: disabled - 1: enabled. Default: 1}}


=== enableTeamSwitch ===
Enables or disables [[Team Switch]] functionality in MP when [[#respawn|respawn]] type is 5 (SIDE). Default is 1.
enableTeamSwitch = 0; //Manual team switch disabled
[[#respawn|respawn]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.34}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.34}}</div>
=== forceRotorLibSimulation ===
==== forceRotorLibSimulation ====
</div>
</div>
Force enable or disable RotorLib.
Force enable or disable RotorLib.
  forceRotorLibSimulation = 1; //force enable
  forceRotorLibSimulation = 1; {{codecomment|// 0: options based - 1: enabled - 2: disabled. Default: 0}}
Default value: 0 - options based; 1 - force enable; 2 - force disable<br />
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|0.50}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|0.50}}</div>
=== joinUnassigned ===
==== joinUnassigned ====
</div>
</div>
By default a new player is not auto assigned a free playable slot in the mission lobby in Multiplayer. Set it to 0/false to make him auto assigned to the side with least players.
By default a new player is not auto assigned a free playable slot in the mission lobby in Multiplayer.
  joinUnassigned = 0; // 0 = Disable, 1 = Enable - default: 1
Disable this setting to make him auto assigned to the side with least players.
  joinUnassigned = 0; {{codecomment|// 0: disabled - 1: enabled. Default: 1}}
 


=== minScore ===
==== minScore, avgScore, maxScore ====
Set minimum score for your mission. Score is related to the star display in the debriefing screen. The score can be influenced during a missions progress by using the [[addRating]] command.
Set minimum, average and maximum score for your mission.
Score is related to the star display in the debriefing screen (OFP:CWC).
The score can be influenced during a missions progress by using the [[addRating]] command.
  minScore = 0;
  minScore = 0;
Values have to follow this formula: ''minScore < avgScore < maxScore''. Any other combinations can lead to game freeze upon mission end.
[[#avgScore|avgScore]], [[#maxScore|maxScore]]
=== avgScore ===
Set average score for your mission. Score is related to the star display in the debriefing screen. The score can be influenced during a missions progress by using the [[addRating]] command.
  avgScore = 1800;
  avgScore = 1800;
Values have to follow this formula: ''minScore < avgScore < maxScore''. Any other combinations can lead to game freeze upon mission end.
maxScore = 75000;
[[#minScore|minScore]], [[#maxScore|maxScore]]
{{Important|
Values have to follow this formula: '''minScore < avgScore < maxScore'''. Any other combinations can lead to game freeze upon mission end.
}}


=== maxScore ===
Set maximum score for your mission. Score is related to the star display in the debriefing screen. The score can be influenced during a missions progress by using the [[addRating]] command.
maxScore = 75000;
Values have to follow this formula: ''minScore < avgScore < maxScore''. Any other combinations can lead to game freeze upon mission end.
[[#minScore|minScore]], [[#avgScore|avgScore]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma|1.00}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma|1.00}}</div>
=== onCheat ===
==== onCheat ====
</div>
</div>
Executes custom statement when player enters GETALLGEAR cheat (see: [[ArmA:_Cheats#GETALLGEAR|GETALLGEAR]]).
Executes custom statement when player enters GETALLGEAR cheat (see: [[ArmA:_Cheats#GETALLGEAR|GETALLGEAR]]).
  onCheat = "[[hint]] [[str]] [[_this]]";
  onCheat = "[[hint]] [[str]] [[_this]]";


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma2oa|1.62}}</div>
 
=== onPauseScript ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma2oa|1.62}}</div>
==== onPauseScript ====
</div>
</div>
Executes a custom .sqf script or function in [[Scheduler#Scheduled_Environment|scheduled environment]] ([[execVM]]) when player brings up Game Pause screen (presses 'Esc' button). [[Display]] parameter of the resulting [[dialog]] is available via (''_this'' [[select]] 0) inside the script.  
Executes a custom SQF script or function in [[Scheduler#Scheduled_Environment|scheduled environment]] ([[execVM]]) when player brings up Game Pause screen (presses 'Esc' button).
[[Display]] parameter of the resulting [[dialog]] is available via (''_this'' [[select]] 0) inside the script.
  onPauseScript = "myOnPauseScript.sqf";
  onPauseScript = "myOnPauseScript.sqf";
  onPauseScript[] = {myOnPauseFunction1,myOnPauseFunction2};//(Arma 3)
  onPauseScript[] = { myOnPauseFunction1, myOnPauseFunction2 }; {{codecomment|// Arma 3}}
'''NOTE:''' The script or function executes in its own namespace, so in order to pass external global variable to the script you need to explicitly indicate namespace passed variable defined in. For example, while expression like myVar = "123"; defined elsewhere usually is treated as if myVar belongs to [[missionNamespace]], inside onPauseScript you have to be explicit about it:
'''NOTE:''' The script or function executes in its own namespace, so in order to pass external global variable to the script you need to explicitly indicate namespace passed variable defined in. For example, while expression like myVar = "123"; defined elsewhere usually is treated as if myVar belongs to [[missionNamespace]], inside onPauseScript you have to be explicit about it:
  [[hint]] [[str]] myVar; //Undefined variable myVar error!
  [[hint]] [[str]] myVar; {{codecomment|// Undefined variable myVar error!}}
  [[hint]] [[str]] ([[missionNamespace]] [[getVariable]] "myVar"); //123  
  [[hint]] [[str]] ([[missionNamespace]] [[getVariable]] "myVar"); {{codecomment|// 123}}
The above is also true if defining global variable inside onPauseScript for use elsewhere:
The above is also true if defining global variable inside onPauseScript for use elsewhere:
  myVar2 = "345"; //incorrect!
  myVar2 = "345"; {{codecomment|// incorrect}}
  [[missionNamespace]] [[setVariable]] ["myVar2", "345"]; //correct!
  [[missionNamespace]] [[setVariable]] ["myVar2", "345"]; {{codecomment|// correct}}
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma|1.00}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma|1.00}}</div>
=== saving ===
==== saving ====
</div>
</div>
Toggle saving.
Toggle saving possibility.
  saving = 0; // disable saving
  saving = 0; {{codecomment|// 0: disabled - 1: enabled. Default: 1}}
Default value: 1
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|TKOH|1.00}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|TKOH|1.00}}</div>
=== scriptedPlayer ===
==== scriptedPlayer ====
</div>
</div>
When scripted player is enabled, game no longer shows "No player select" error message upon mission start when no player unit is present.
When scripted player is enabled, game no longer shows "No player select" error message upon mission start when no player unit is present.
  scriptedPlayer = 1;
  scriptedPlayer = 1; {{codecomment|// 0: disabled - 1: enabled. Default: 1}}
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.60}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.60}}</div>
=== skipLobby ===
==== skipLobby ====
</div>
</div>
When enabled, joining player will join the mission bypassing role selection screen. The joinUnassigned param will be set to 1 automatically, so that player receives 1st available role from mission template. When leaving such mission, player will go straight back to server browser.
When enabled, joining player will join the mission bypassing role selection screen. The joinUnassigned param will be set to 1 automatically, so that player receives 1st available role from mission template. When leaving such mission, player will go straight back to server browser.
  skipLobby = 1; //enabled
  skipLobby = 1; {{codecomment|// 0: disabled - 1: enabled. Default: 0}}
Default value: 0
 








== Server security ==
This section underlines mission security settings for server. They can secure or break your mission, so be sure to use them wisely.


= Server security =


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|0.50}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|0.50}}</div>
=== allowFunctionsLog ===
==== allowFunctionsLog ====
</div>
</div>
Allows functions to log to the RPT file. Set it to 1/true to allow RPT logging.
Allows functions to log to the RPT file. Set it to 1/true to allow RPT logging.
  allowFunctionsLog = 1;//true
  allowFunctionsLog = 1; {{codecomment|// 0: disabled - 1: enabled. Default: ?}}
0 = Disable<br />
 
1 = Enable<br />
[[BIS_fnc_error]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.00}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.00}}</div>
=== allowFunctionsRecompile ===
==== allowFunctionsRecompile ====
</div>
</div>
As a security measure, functions are by default protected against rewriting during the mission. This restriction does not apply in missions previewed from the editor and in missions with the following attribute in Description.ext
As a security measure, functions are by default protected against rewriting during the mission.
  allowFunctionsRecompile = 1;
This restriction does not apply in missions previewed from the editor and in missions with the following attribute in Description.ext
  allowFunctionsRecompile = 1; {{codecomment|// 0: disabled - 1: enabled. Default: 0}}
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.50}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.50}}</div>
=== CfgRemoteExec ===
==== CfgRemoteExec ====
</div>
</div>
Define remoteExec restrictions.
Define [[remoteExec]] and [[remoteExecCall]] restrictions. See [[CfgRemoteExec]] for more detailed explanations.
  class CfgRemoteExec
  class CfgRemoteExec
  {
  {
  // List of script functions allowed to be sent from client via remoteExec
  {{codecomment|// List of script functions allowed to be sent from client via remoteExec}}
  class Functions
  class Functions
  {
  {
  // RemoteExec modes:  
  {{codecomment|// RemoteExec modes:  
  // 0-turned off
  // 0-turned off
  // 1-turned on, taking whitelist into account
  // 1-turned on, taking whitelist into account
  // 2-turned on, ignoring whitelist (default, because of backward compatibility)
  // 2-turned on, ignoring whitelist (default, because of backward compatibility)}}
  mode = 2;
  mode = 2;
  // Ability to send jip messages: 0-disabled, 1-enabled (default)
  {{codecomment|// Ability to send jip messages: 0-disabled, 1-enabled (default)}}
  jip = 1;
  jip = 1;
  // your functions here
  {{codecomment|// your functions here}}
  class BIS_fnc_aFunction
  class BIS_fnc_aFunction
  {
  {
  allowedTargets = 0; // can target anyone (default)
  allowedTargets = 0; {{codecomment|// can target anyone (default)}}
  jip = 0;           // sending jip messages is disabled for this function
  jip = 0; {{codecomment|// sending jip messages is disabled for this function}}
// (overrides settings in the Functions class)
{{codecomment|// (overrides settings in the Functions class)}}
  };
  };
  class YourFunctionOne { allowedTargets = 1; }; // can target only clients
  class YourFunctionOne { allowedTargets = 1; }; {{codecomment|// can target only clients}}
  class YourFunctionTwo { allowedTargets = 2; }; // can target only the server
  class YourFunctionTwo { allowedTargets = 2; }; {{codecomment|// can target only the server}}
  };
  };
   
   
  // List of script commands allowed to be sent from client via remoteExec
  {{codecomment|// List of script commands allowed to be sent from client via remoteExec}}
  class Commands
  class Commands
  {
  {
  // your commands here
  {{codecomment|// your commands here}}
  class setDir
  class setDir
  {
  {
  allowedTargets = 2; // can target only the server
  allowedTargets = 2; {{codecomment|// can target only the server}}
  jip = 0; // sending jip is turned off
  jip = 0; {{codecomment|// sending jip is turned off}}
// (overrides settings in the Commands class)
{{codecomment|// (overrides settings in the Commands class)}}
  };
  };
  };
  };
  };
  };
[[CfgRemoteExec]], [[remoteExec]], [[remoteExecCall]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.32}}</div>
 
=== CfgRemoteExecCommands ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.32}}</div>
==== CfgRemoteExecCommands ====
</div>
</div>
Define commands available for remote execution with [[BIS_fnc_MP]]. See [[CfgRemoteExecCommands]] for more info.
Define commands available for remote execution with [[BIS_fnc_MP]]. See [[CfgRemoteExecCommands]] for more detailed explanations.
  class CfgRemoteExecCommands {}; //disable remote execution of all commands
  class CfgRemoteExecCommands {}; {{codecomment|// disable remote execution of all commands}}
[[CfgRemoteExecCommands]]
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.66}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.66}}</div>
=== CfgDisabledCommands ===
==== CfgDisabledCommands ====
</div>
</div>
Disables certain script commands. See [[CfgDisabledCommands]] for detailed info.
Disable certain script commands. See [[CfgDisabledCommands]] for more detailed explanations.
[[CfgDisabledCommands]]
 








== Tasks ==
Tasks are part of the mission. This section deals with the settings for them.<br />
See also [[Arma 3 Tasks Overhaul]], [[Shared Objectives]].


= Tasks =


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.42}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.42}}</div>
=== taskManagement_markers2D ===
==== taskManagement_markers2D ====
</div>
</div>
0: do not use new 2D markers (default), 1: replace task markers with new 2D markers
Use new 2D markers
  taskManagement_markers2D = 1;
  taskManagement_markers2D = 1; {{codecomment|// 0: disabled - 1: enabled. Default: 0}}
[[Shared Objectives]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.42}}</div>
 
=== taskManagement_markers3D ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.42}}</div>
==== taskManagement_markers3D ====
</div>
</div>
0: do not use new 3D markers (default), 1: replace task waypoints with new 3D markers
Use new 3D markers
  taskManagement_markers3D = 1;
  taskManagement_markers3D = 1; {{codecomment|// 0: disabled - 1: enabled. Default: 0}}
[[Shared Objectives]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.42}}</div>
 
=== taskManagement_propagate ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.42}}</div>
==== taskManagement_propagate ====
</div>
</div>
0: do not propagate (default), 1: propagate shared tasks to subordinates
Propagate shared tasks to subordinates
  taskManagement_propagate = 1;
  taskManagement_propagate = 1; {{codecomment|// 0: disabled - 1: enabled. Default: 0}}
[[Shared Objectives]]
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.42}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.42}}</div>
=== taskManagement_drawDist ===
==== taskManagement_drawDist ====
</div>
</div>
3d marker draw distance in meters (default: 2000). within this range, unassigned tasks are drawn on screen.
3D marker maximum draw distance in meters. within this range, unassigned tasks are drawn on screen.
  taskManagement_drawDist = 2500;
  taskManagement_drawDist = 2500; {{codecomment|// in meters. Default: 2000}}
[[Shared Objectives]]
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.53}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.53}}</div>
=== CfgTaskTypes ===
==== CfgTaskTypes ====
</div>
</div>
Define Task types and their icons
Define Task types and their icons.
 
  class CfgTaskTypes
  class CfgTaskTypes
  {
  {
Line 817: Line 885:
  };
  };
  };
  };
[[Arma 3 Tasks Overhaul]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.12}}</div>
 
=== CfgTaskDescriptions ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.12}}</div>
==== CfgTaskDescriptions ====
</div>
</div>
Define Task titles and descriptions
Define Task titles and descriptions.
  class CfgTaskDescriptions
  class CfgTaskDescriptions
  {
  {
Line 837: Line 905:
  marker = $STR_myTask2Marker;
  marker = $STR_myTask2Marker;
  };
  };
};
};
[[Arma 3 Tasks Overhaul]]
 








== Custom content definition ==
These class definitions allow for mission-defined content like sounds, music, or more advanced content like functions.


= Custom content definition =


=== CfgCameraEffects ===
==== CfgCameraEffects ====
Configure custom [[cameraEffect]]
Configure custom [[cameraEffect]].
  class CfgCameraEffects
  class CfgCameraEffects
  {
  {
Line 855: Line 924:
  {
  {
  type = 0;
  type = 0;
  duration = 6; //3 seconds for some reason
  duration = 6; {{codecomment|// 3 seconds for some reason}}
  file = ""; //some kind of custom .p3d file for camera
  file = ""; {{codecomment|//some kind of custom .p3d file for camera}}
  };
  };
  class AutoTerminate: External
  class AutoTerminate: External
  {
  {
  type = 3; //CamChained
  type = 3; {{codecomment|// CamChained}}
  chain[] = {"External","Terminate"}; //Terminate will trigger after 3 seconds
  chain[] = { "External", "Terminate" }; {{codecomment|// Terminate will trigger after 3 seconds}}
  };
  };
  };
  };
  };
  };
Example:
Example:
  "AutoTerminate" [[spawn]] {
  "AutoTerminate" [[spawn]] {
Line 872: Line 942:
  _cam [[camSetTarget]] [[player]];  
  _cam [[camSetTarget]] [[player]];  
  _cam [[camSetRelPos]] [0, -0.1, 1.8];  
  _cam [[camSetRelPos]] [0, -0.1, 1.8];  
  _cam [[camCommit]] _dur/2;  
  _cam [[camCommit]] _dur / 2;  
  _cam [[cameraEffect]] [_this, "Back"];
  _cam [[cameraEffect]] [_this, "Back"];
  [[waitUntil]] {[[camCommitted]] _cam};
  [[waitUntil]] {[[camCommitted]] _cam};
Line 878: Line 948:
  };
  };


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma2|1.00}}</div>
 
=== CfgFunctions ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma2|1.00}}</div>
==== CfgFunctions ====
</div>
</div>
Define functions for your mission. See [[Functions|Functions Library]] for detailed info.
Define functions for your mission. See [[Functions|Functions Library]] for more detailed informations.
[[Functions|Functions Library]]
 


=== CfgIdentities ===
==== CfgIdentities ====
Define the identities of individual units, you can specify the face, type of glasses worn, voice, tone of voice and name of an identity. You then give a specific unit this identity by using the command [[setIdentity]] in the mission.  '''Note''':  ''nameSound'' is only valid for Arma 3.
Define the identities of individual units, you can specify the face, type of glasses worn, voice, tone of voice and name of an identity.
You then give a specific unit this identity by using the command [[setIdentity]] in the mission.  '''Note''':  ''nameSound'' is only valid for Arma 3.
  class CfgIdentities
  class CfgIdentities
  {
  {
Line 891: Line 963:
  {
  {
  name = "Givens";
  name = "Givens";
        nameSound = "Givens"; // Arma 3 only!
nameSound = "Givens"; {{codecomment|// Arma 3 only!}}
  face = "whiteHead_06";
  face = "whiteHead_06";
  glasses = "None";
  glasses = "None";
Line 898: Line 970:
  };
  };
  };
  };
Usage:
Example:
  myUnit setIdentity "MyLittleSoldier"
  player [[setIdentity]] "MyLittleSoldier";
See [[:Category:CfgIdentities]] for valid options for: face, glasses, speaker etc.
See [[:Category:CfgIdentities|CfgIdentities]] for more detailed informations and valid options for face, glasses, speaker etc.
[[setIdentity]]
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.75}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.75}}</div>
=== CfgLeaflets ===
==== CfgLeaflets ====
</div>
</div>
Define leaflets for your missions. See [[Arma 3 Leaflets]] for more information.
Define leaflets for your missions. See [[Arma 3 Leaflets]] for more information.
[[Functions|Functions Library]]


=== CfgMusic ===
 
==== CfgMusic ====
Defines music you can play with [[playMusic]].
Defines music you can play with [[playMusic]].
  class CfgMusic
  class CfgMusic
Line 926: Line 998:
  };
  };
'''Name''' can be left blank as in the examples above. Only specify a name if you wish to access these sounds via the environment options of a trigger.<br />
'''Name''' can be left blank as in the examples above. Only specify a name if you wish to access these sounds via the environment options of a trigger.<br />
'''Title''' is the text string that will be displayed on the screen when the sound file is played. See also [[Stringtable.csv]]
'''Title''' is the text string that will be displayed on the screen when the sound file is played. See also [[Stringtable.csv]]/[[Stringtable.xml]].


{{Important|Setting volume (db) of music far from zero will disable [[fadeMusic]] command. Optimal values are from -10 to 10.}}
{{Important|Setting volume (db) of music far from zero will disable [[fadeMusic]] command. Optimal values are from -10 to 10.}}


Use in missions:
Example:
  [[playMusic]] "MarsIntro"
  [[playMusic]] "MarsIntro";
 


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.12}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.12}}</div>
=== CfgNotifications ===
==== CfgNotifications ====
</div>
</div>
Define custom notifications to be shown with [[BIS_fnc_showNotification]]
Define custom notifications to be shown with [[BIS_fnc_showNotification]]. See [[Notification]] for more detailed informations.
  class CfgNotifications
  class CfgNotifications
  {
  {
  class MyNotification
  class MyNotification
  {
  {
  // NOTE: title, iconPicture, iconText and description are filled by BIS_fnc_showNotification arguments
  {{codecomment|// NOTE: title, iconPicture, iconText and description are filled by BIS_fnc_showNotification arguments}}
  title = "";          // Title displayed as text on black background
  title = "";          {{codecomment|// Title displayed as text on black background}}
  iconPicture = "";    // Small icon displayed in left part
  iconPicture = "";    {{codecomment|// Small icon displayed in left part}}
  iconText = "";      // Short text displayed over the icon
  iconText = "";      {{codecomment|// Short text displayed over the icon}}
  description = "";    // Brief description displayed as structured text
  description = "";    {{codecomment|// Brief description displayed as structured text}}
  color[] = {1,1,1,1}; // Icon and description color
  color[] = {1,1,1,1}; {{codecomment|// Icon and description color}}
  duration = 5;        // How many seconds will the notification be displayed
  duration = 5;        {{codecomment|// How many seconds will the notification be displayed}}
  priority = 0;        // Priority; higher number = more important
  priority = 0;        {{codecomment|// Priority; higher number <nowiki>=</nowiki> more important}}
  difficulty[] = {};  // Required difficulty settings - all difficulty settings have to be enabled
  difficulty[] = {};  {{codecomment|// Required difficulty settings - all difficulty settings have to be enabled}}
  };
  };
  };
  };
[[BIS_fnc_showNotification]], [[Notification]]


=== CfgRadio ===
 
==== CfgRadio ====
Defines radio sentences you can play with *Radio commands: [[customRadio]], [[vehicleRadio]], [[groupRadio]], [[sideRadio]], [[globalRadio]]
Defines radio sentences you can play with *Radio commands: [[customRadio]], [[vehicleRadio]], [[groupRadio]], [[sideRadio]], [[globalRadio]]
  class CfgRadio
  class CfgRadio
Line 968: Line 1,041:
  {
  {
  name = "";
  name = "";
  sound[] = { "\sound\filename2", db - 100, 1.0 }; // .wss implied
  sound[] = { "\sound\filename2", db - 100, 1.0 }; {{codecomment|// .wss implied}}
  title = { $STR_RADIO_2 };
  title = { $STR_RADIO_2 };
  };
  };
Line 977: Line 1,050:
  unit [[sideRadio]] "RadioMsg2";
  unit [[sideRadio]] "RadioMsg2";


=== CfgSFX ===
 
==== CfgSFX ====
See [[CfgSFX]] for more information.
See [[CfgSFX]] for more information.


=== CfgSounds ===
 
General sounds that can be used for dialog, voiceovers in the briefing etc.
==== CfgSounds ====
General sounds that can be used for dialog, voiceovers in the briefing etc.<br />
See also commands [[playSound]], [[say]], [[say2D]] and [[say3D]].
  class CfgSounds
  class CfgSounds
  {
  {
Line 989: Line 1,065:
  {{codecomment|// how the sound is referred to in the editor (e.g. trigger effects)}}
  {{codecomment|// how the sound is referred to in the editor (e.g. trigger effects)}}
  name = "my_wolf_sound";
  name = "my_wolf_sound";
  {{codecomment|// filename, volume, pitch, distance}}
  {{codecomment|// filename, volume, pitch, distance}}
  sound[] = {"fx\wolf1.ogg", 1, 1, 100};
  sound[] = {"fx\wolf1.ogg", 1, 1, 100};
  {{codecomment|// subtitle delay in seconds, subtitle text}}  
  {{codecomment|// subtitle delay in seconds, subtitle text}}  
titles[] = { 1, "*wolf growls*" };
};
class wolf2
{
name = "my_other_wolf_sound";
sound[] = {"fx\wolf2.ogg", 1, 1, 100};
  titles[] = { 1, "*wolf growls*" };
  titles[] = { 1, "*wolf growls*" };
  };
  };
  };
  };
Use in missions:
Example:
  [[playSound]] "wolf1";  // use the class name!
  [[playSound]] "wolf1";  {{codecomment|// use the class name!}}
  [[player]] [[say]] ["wolf1", 100];
  [[player]] [[say]] ["wolf1", 100];
See [http://ofp.toadlife.net/downloads/tutorials/tutorial_sound/tutorial_sound.html|OFP ToadLife tutorial] for more informations.
See [http://ofp.toadlife.net/downloads/tutorials/tutorial_sound/tutorial_sound.html| OFP ToadLife's tutorial] for more detailed informations.


'''NOTE:''' Since Arma 3 v1.49.131710 it is possible to define AddOn sounds in mission config. In order to make engine look for the sound in AddOn, the sound path must start with '''@''' (instead of '''\''') for example:
'''NOTE:''' Since Arma 3 v1.49.131710 it is possible to define AddOn sounds in mission config. In order to make engine look for the sound in AddOn, the sound path must start with '''@''' (instead of '''\''') for example:
Line 1,013: Line 1,097:
  };
  };


The following will play Vision Mode change sound from AddOn:
[[playSound]] "addonsound1";
[[player]] [[say]] "addonsound1";
[[player]] [[say2D]] "addonsound1";
[[player]] [[say3D]] "addonsound1";


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.24}}</div>
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.24}}</div>
=== CfgUnitInsignia ===
==== CfgUnitInsignia ====
</div>
</div>
Defines custom unit insignia (shoulder patches).
Define custom unit insignia (shoulder patches). See [[Arma 3 Unit Insignia]] for more detailed informations.
  class CfgUnitInsignia
  class CfgUnitInsignia
  {
  {
  class 111thID
  class 111thID
  {
  {
  displayName = "111th Infantry Division"; {{codecomment|// Name displayed in [[Arsenal]]}}
  displayName = "111th Infantry Division"; {{codecomment|// Name displayed in [[Arsenal]]}}
  author = "Bohemia Interactive"; {{codecomment|// Author displayed in Arsenal}}
  author = "Bohemia Interactive"; {{codecomment|// Author displayed in Arsenal}}
  texture = "\a3\UI_F_Bootcamp\Data\CfgUnitInsignia\B_111thID_texture_ca.paa"; {{codecomment|// Image path}}
  texture = "\a3\UI_F_Bootcamp\Data\CfgUnitInsignia\B_111thID_texture_ca.paa"; {{codecomment|// Image path}}
  textureVehicle = ""; {{codecomment|// Does nothing currently, reserved for future use}}
  textureVehicle = ""; {{codecomment|// Does nothing currently, reserved for future use}}
  };
  };
  };
  };
[[Arma 3 Unit Insignia]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.50}}</div>
 
=== CfgUnitTemplates ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.50}}</div>
==== CfgUnitTemplates ====
</div>
</div>
This class is used to create units templates. For now, this is only used with the function [[BIS_fnc_unitHeadgear]]
This class is used to create units templates. For now, this is only used with the function [[BIS_fnc_unitHeadgear]].
  class CfgUnitTemplates
  class CfgUnitTemplates
  {
  {
  // Classic selectRandom
  {{codecomment|// Classic selectRandom
  // [myUnit, "MyFirstTemplate"] call bis_fnc_unitHeadgear;
  // [myUnit, "MyFirstTemplate"] call bis_fnc_unitHeadgear;}}
  class MyFirstTemplate: Default
  class MyFirstTemplate: Default
  {
  {
Line 1,058: Line 1,137:
  };
  };
  };
  };
  // the probabilities will be considered, weighted random
  // [myUnit, "MySecondTemplate"] call bis_fnc_unitHeadgear;
  {{codecomment|// the probabilities will be considered, weighted random
  // [myUnit, "MySecondTemplate"] call bis_fnc_unitHeadgear;}}
  class MySecondTemplate: Default
  class MySecondTemplate: Default
  {
  {
Line 1,076: Line 1,156:
  };
  };
  };
  };
[[BIS_fnc_unitHeadgear]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.69}}</div>
 
=== CfgVehicles ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.69}}</div>
==== CfgVehicles ====
</div>
</div>
This class can only be used to create sound sources, since Arma 3 v1.69.141183
This class can only be used to [[createSoundSource|create sound sources]], since Arma 3 v1.69.141183.<br />
See also [[#CfgSFX|CfgSFX]] for more detailed informations.
  class CfgVehicles
  class CfgVehicles
  {
  {
  class MyOwlSound // class name to be used with createSoundSource
  class MyOwlSound {{codecomment|// class name to be used with createSoundSource}}
  {
  {
  sound = "MyOwl"; // reference to CfgSFX class
  sound = "MyOwl"; {{codecomment|// reference to [[#CfgSFX|CfgSFX]] class}}
  };
  };
  };
  };
[[CfgSFX]], [[createSoundSource]]


<div><div style="float: right; margin-left: 0.5em;">{{GVI|arma3|1.42}}</div>
 
=== CfgVehicleTemplates ===
<div><div style="float: left; margin-right: 0.5em;">{{GVI|arma3|1.42}}</div>
==== CfgVehicleTemplates ====
</div>
</div>
  This class is used to create vehicle templates used by the Vehicle Customization system
  This class is used to create vehicle templates used by the [[Vehicle_Customization (VhC)||Vehicle Customization system]].
  class CfgVehicleTemplates
  class CfgVehicleTemplates
  {
  {
Line 1,113: Line 1,194:
  };
  };
  };
  };
[[Vehicle_Customization (VhC)]]


=== rscTitles ===
 
==== rscTitles ====
Defines custom UI [[Dialog Control|displays]]. To show such displays, use [[cutRsc]] or [[titleRsc]].
Defines custom UI [[Dialog Control|displays]]. To show such displays, use [[cutRsc]] or [[titleRsc]].


Line 1,121: Line 1,202:
[[Category:ArmA: Mission Editing]]
[[Category:ArmA: Mission Editing]]
[[Category:Mission Editor]]
[[Category:Mission Editor]]
[[Category:Sandbox]]

Revision as of 16:21, 3 March 2018


Template:toclimitThe Description.ext file sets the overall mission attributes, and defines some global entities that will be available to other scripts. It is placed in mission's root folder. It uses the same syntax and structure as the Config.cpp file, but supports only a limited number of the full set of Config.cpp classes. Many, such as CfgAmmo, won't work. In OFP:Elite this file is required for MP missions. If this is not included, a "-1 error" is shown when selecting the mission and the mission won't load.
In 2D Editor, scenario has to be saved or re-loaded before changes to Description.ext takes effect. In Eden Editor, changes are refreshed automatically upon scenario preview.


Mission informations

This section helps you find out how to customise Mission overall external appearance, from Mission Overview to Loading Screens.


-wrong parameter ("Arma") defined!-1.00

header

class Header
{
	gameType = CTF;		// Game type
	minPlayers = 1;		// minimum number of players the mission supports
	maxPlayers = 10;	// maximum number of players the mission supports
};

See Multiplayer Game Types for more detailed informations.


onLoadMission

Displays a message while the mission is loading. Note that a mission that takes very little time to load will only display the message for a short time. Care should be taken to see whether your message is readable in that timeframe.

onLoadMission = "YourMissionName";

The OnLoadMission option is used to present the mission name to the user. In MP this is the name you see when selecting a mission and also the name that is presented to the Multiplayer browser.


onLoadIntro

Displays a message while the intro is loading.

onLoadIntro = "YourMessage"


onLoadMissionTime

Define whether you will see the time and date displayed while the mission loads. Effect unkown in Arma 3.

onLoadMissionTime = 1; // 0: disabled - 1: enabled. Default: 1


onLoadIntroTime

Define whether you will see the time and date displayed while the intro loads. 1 means visible, 0 hidden. Default: 0

onLoadIntroTime = 1; // 0: disabled - 1: enabled. Default: 0

loadScreen

You can define a picture to be shown while the mission is loaded. The path is relative to the mission folder.

loadScreen = "pictures\intro.paa";


briefingName

Mission name displayed in the mission selection menu.

briefingName = "TAG 1-5 CO My super mission";


CfgLoadingTexts

Define mission specific loading texts.


Example load screen

onLoadName

String (usually mission name) shown during mission loading. The string is shown in a slightly larger font above the loadScreen. For example:

author			= "Varanon";
OnLoadName		= "Point Insertion";
OnLoadMission		= "A group of NATO soldiers is tasked with sabotaging a coastal defense.";
loadScreen		= "images\loadScreen.paa";

This produces the pictured result. The onLoadMission text is placed below the load screen and the header gameType determines the game type on top of the box.


author

Mission author's name. The default loading screen shows this string below the onLoadName in a smaller font prefixed by "by ".


overviewPicture

Path to image which will be displayed when the mission is highlighted on the mission selection screen. Image should be .paa format and in 2:1 aspect ratio – ideally 1024x512 (Arma 3).


overviewText

Text to be displayed below the overviewPicture on the mission selection screen when the mission is available to play.


overviewTextLocked

Text to be displayed below the overviewPicture on the mission selection screen when the mission is locked from play.



Respawn/Revive

This section talks about respawn and revive actions.


respawn

Sets respawn type.

Can be one of:

  • 0 or "NONE" - No respawn
  • 1 or "BIRD" - Respawn as a seagull
  • 2 or "INSTANT" - Respawn just where you died.
  • 3 or "BASE" - Respawn in base.
    • Requires a marker named:
      • respawn_west
      • respawn_east
      • respawn_guerrila
      • respawn_civilian
    • Add markers named with the prefix 'respawn_west' with any suffix (eg: respawn_westABC, respawn_west1, respawn_west_2, etc) for multiple random respawn points. Similarly for east, guerrilla and civilian.
    • Vehicle respawn in base requires a marker named:
      • respawn_vehicle_west
      • respawn_vehicle_east
      • respawn_vehicle_guerrila
      • respawn_vehicle_civilian
  • 4 or "GROUP" - Respawn in your group (if there's no AI left, you'll become a seagull).
  • -wrong parameter ("Arma") defined!-1.08 5 or "SIDE" - Respawn into an AI unit on your side (if there's no AI left, you'll become a seagull). With this respawn type, team switch is also available to any AI controlled playable units.


respawnButton

Enable or disable the respawn button in the menu for INSTANT and BASE respawn types.

respawnButton = 0; // 0: disabled - 1: enabled. Default: 1


respawnDelay

Set respawn delay in seconds.

respawnDelay = 42;


respawnVehicleDelay

Set vehicle respawn delay in seconds.

respawnVehicleDelay = 11;


respawnDialog

Show the scoreboard and respawn countdown timer for a player if he is killed with respawn type 3.

respawnDialog = 0; // 0: disabled - 1: enabled. Default: 1


respawnOnStart

Respawn player when he joins the game. Available only for INSTANT and BASE respawn types.

respawnOnStart =  1; // Respawn on start. Run respawn script on start.
respawnOnStart =  0; // Dont respawn on start. Run respawn script on start.
respawnOnStart = -1; // Dont respawn on start. Don't run respawn script on start.


respawnTemplates

Respawn templates from CfgRespawnTemplates. You can combine any number of them together.

respawnTemplates[] = { "Counter", "Wave" };
Side specific respawn templates can be specified with respawnTemplatesSIDE[] where SIDE can be any playable side (West, East, Guer, Civ). When such is undefined, general respawnTemplates are used instead.


-wrong parameter ("Arma") defined!-1.00

respawnWeapons

Set weapons players will receive upon respawn. respawnMagazines has to be defined as well.

respawnWeapons[] = { "arifle_Katiba_GL_F" };
Side specific respawn weapons can be specified with respawnWeaponsSIDE[] where SIDE can be any playable side (West, East, Guer, Civ).
Corresponding respawnMagazinesSIDE[] has to be defined as well.


-wrong parameter ("Arma") defined!-1.00

respawnMagazines

Set magazines players will receive upon respawn. respawnWeapons has to be defined as well.

respawnMagazines[] = { "30Rnd_65x39_caseless_green", "30Rnd_65x39_caseless_green" };
Side specific respawn weapons can be specified with respawnMagazinesSIDE[] where SIDE can be any playable side (West, East, Guer, Civ).
Corresponding respawnWeaponsSIDE[] has to be defined as well.


ReviveMode

Define if Revive mode is enabled.

ReviveMode = 1; // 0: disabled - 1: enabled - 2: controlled by player attributes. Default: 0


ReviveUnconsciousStateMode

ReviveUnconsciousStateMode = 0; // 0: basic - 1: advanced - 2: realistic. Default: 0 – see damage model for more detailed informations.


ReviveRequiredTrait

Define if only a medic (or unit with medic trait) can perform a revive.

ReviveRequiredTrait = 0; // 0: disable - 1: enable. Default: 0


ReviveRequiredItems

Define if a medical item (first aid kit or medkit) is required to begin a revive process.

ReviveRequiredItems = 2; // 0: none - 1: medkit - 2: medkit or first aid kit. Default: ?


ReviveRequiredItemsFakConsumed

Define if a first aid kit is consumed on reviving a teammate

ReviveRequiredItemsFakConsumed = 1; // 0: disable - 1: enable. Default: ?


ReviveMedicSpeedMultiplier

Speed multiplier for revive performed by medic

ReviveMedicSpeedMultiplier = 2; // medic revive will be two times faster compared to another soldier


reviveDelay

The time in seconds it takes to revive an incapacitated unit. Having a Medikit will halve this time.

reviveDelay = 6; // Default: 6


reviveForceRespawnDelay

The time in seconds it takes for an incapacitated unit to force their respawn.

reviveForceRespawnDelay = 3; // Default: 3


reviveBleedOutDelay

The time in seconds it takes for a unit to bleed out.

reviveBleedOutDelay = 300; // Default: 120



Mission keys

Mission keys are used to lock/unlock certain missions until you completed other ones. It can also be used in mission to know which missions you finished.
Activated keys can be found in user profile (e.g documents\username.Arma3profile) under activeKeys section.
See also commands activateKey, isKeyActive and deActivateKey for more detailed informations.


-wrong parameter ("Arma") defined!-1.00

keys

List of keys (needed for keysLimit)

keys[] = { "key1", "key2", "key3" };

Note that unlike other 'text' items, stringtable translations ($STR_*) cannot be used


-wrong parameter ("Arma") defined!-1.00

keysLimit

Number of keys from the keys list needed for unlock a mission.

keysLimit = 2;


-wrong parameter ("Arma") defined!-1.00

doneKeys

Name of key(s) needed for mark a mission in SP missions list as completed.

doneKeys[] = { "key4" };

Note that unlike other 'text' items, stringtable translations ($STR_*) cannot be used



player's UI

This section explains HUD customisation possibilities.
See also commands:


showHUD

Enables/Disables the following IGUI elements:

  • Vehicle and Unit Info
  • Radar and Tactical Display
  • Vehicle Compass
  • Tank Direction Indicator
  • Commanding Menu
  • Group Info Bar
showHUD = 0; // 0: disabled - 1: enabled. Default: 1

The effect of using the above showHUD param is different from the effects of showHUD scripting command, both methods are rather complementary to each other.
As of Arma 3 v1.49.131879 showHUD param could be an array to allow control over separate HUD elements, for example:

showHUD[] = {
	true,	// Scripted HUD (same as showHUD command)
	true,	// Vehicle + soldier info
	false,	// Vehicle radar [HIDDEN]
	false,	// Vehicle compass [HIDDEN]
	true,	// Tank direction indicator
	true,	// Commanding menu
	true,	// Group Bar
	true,	// HUD Weapon Cursors
	true	// Vehicle display panels
};

NOTE: adding new showHUD[] array param to description.ext will also disable scripted command showHUD entirely.


showCompass

Defines if the compass is visible.

showCompass = 0; // 0: disable - 1: enable. Default: 1

showGPS

Enables/Disables the GPS

showGPS = 0; // 0: disable - 1: enable. Default: 1

In ArmA 1.04 toggle this option to disable the mini map attached to the GPS.


showGroupIndicator

When set to 1, changes default GPS mini map into a radar like display that indicates group members relative position to the player

showGroupIndicator = 1; // 0: disabled - 1: enabled. Default: 0. Has no effect since custom panels were introduced in Arma 3


showMap

Defines if the map is shown after the mission starts.

showMap = 0; // 0: disabled - 1: enabled. Default: 1


-wrong parameter ("Arma") defined!-1.00

showNotePad

In ArmA, defines if the NotePad is shown after the mission starts.

showNotePad = 0; // 0: disabled - 1: enabled. Default: 1


showPad

Defines if the NotePad is shown after the mission starts. Only in OFP:CWC.

showPad = 0; // 0: disabled - 1: enabled. Default: 1


showWatch

Defines if the watch is visible.

showWatch = 0; // 0: disabled - 1: enabled. Default: 1


showUAVFeed

Enables/Disables the UAV Feed.

showUAVFeed = 0; // 0: disabled - 1: enabled. Default: 1


showSquadRadar

Defines if the Squad Radar is visible.

showSquadRadar = 0; // 0: disabled - 1: enabled. Default: 0



Starting gear

Starting gear points to briefing-available equipment. For respawn equipment, see #Respawn/Revive.
See also Command Group: Weapon Pool for more detailed informations about weapon pool system.


weapons

Set weapons available to players during the briefing.

class Weapons 
{
	class AK74	{ count = 8; };
	class RPG7V	{ count = 2; };
	class Binocular { count = 2; };
};


magazines

Set magazines available to players during the briefing.

class Magazines 
{
	class 30Rnd_545x39_AK	{ count = 32; };
	class PG7V		{ count = 6; };
	class HandGrenade	{ count = 16; };
};


backpacks

Set backpacks available to players during the briefing.

class Backpacks 
{
	class US_Patrol_Pack_EP1	{ count = 4; };
	class US_Assault_Pack_EP1	{ count = 4; };
};


weaponPool

Allows equipment transferred from one campaign mission to the next to be available during the briefing in the gear menu.

weaponPool = 1;


allowSubordinatesTakeWeapons

Allows subordinates (i.e., not leaders) to equip items defined in weapons, magazines and backpacks.

allowSubordinatesTakeWeapons = 1; // 0: disabled - 1: enabled. Default: ?



Corpse & wreck management

This section explains how to use game-included garbage collector (GC) for better performances.
See also commands:


corpseManagerMode

Sets the mode for corpse removal manager.

corpseManagerMode = 0; // Default: 0 for SP, 2 for MP
  • 0 = None - None of the units are managed by the manager
  • 1 = All - All units are managed by the manager
  • 2 = None_But_Respawned - Only units that can respawn are managed by the manager
  • 3 = All_But_Respawned - All units are managed by the manager with exception of respawned (opposite to mode 2)


corpseLimit

Corpse limit before which ( <= ) corpseRemovalMaxTime applies and after which ( > ) corpseRemovalMinTime applies.

corpseLimit = 1;

Default value: 15


corpseRemovalMinTime

Remove all bodies that have been dead longer than corpseRemovalMinTime when corpseLimit is breached.

corpseRemovalMinTime = 60; // seconds. Default: 10

Default value: 10


corpseRemovalMaxTime

Maximum time a corpse can remain on the ground if total number of corpses is equal or under corpseLimit.

corpseRemovalMaxTime = 1200; // seconds. Default: 3600


wreckManagerMode

Sets the mode for wreck removal manager.
wreckManagerMode = 0; // Default: 0 for SP, 2 for MP

0 = None - None of the vehicles are managed by the manager 1 = All - All vehicles are managed by the manager 2 = None_But_Respawned - Only vehicles that can respawn are managed by the manager 3 = All_But_Respawned - All vehicles are managed by the manager with exception of respawned (opposite to mode 2)


wreckLimit

Vehicle wreck limit before which ( <= ) wreckRemovalMaxTime applies and after which ( > ) wreckRemovalMinTime applies .

wreckLimit = 1; //seconds. Default: 15


wreckRemovalMinTime

Remove all wrecks that have existed longer than wreckRemovalMinTime when wreckLimit is breached.

wreckRemovalMinTime = 60; // seconds. Default: 10


wreckRemovalMaxTime

Maximum time a wreck can remain on the ground if total number of wrecks is equal or under wreckLimit.

wreckRemovalMaxTime = 1200; // seconds. Default: 36000 (10 hours)


minPlayerDistance

The minimum distance between corpse or wreck and nearest player before the corpse or wreck is allowed to be removed by the garbage collector.

minPlayerDistance = 50; // meters. Default: 0



Mission parameters

Mission parameters allow you to add settings to your creation. These settings are in-game accessible only in Multiplayer mode, but can also be accessed by commands for a scripted use in Singleplayer mode.
for Arma 3, see Arma 3 Mission Parameters.
See also commands BIS_fnc_getParamValue (paramsArray usage is not recommended).


titleParam%, valuesParam%, defValueParam%, textParam%

titleParam1 and titleParam2 (% in title is replaced either by 1 or 2) are multiplayer options. These options are seen in the lobby of a multiplayer game. These options can be useful for setting time limits and score limits in such games as Capture the Flag and Death Matches. Other popular uses include accelerate time, setting the mission difficulty or switching the intro on/off.

While param1/param2 were introduced in OFP:CWC and can still be used in later titles, it is highly recommended to use config class params.

In the mission param1 and param2 have the values of the chosen options.

titleParam1 = "Time limit:";
valuesParam1[] = { 0, 300, 600, 900 };
defValueParam1 = 900;
textsParam1[] = { "Unlimited", "5 min", "10 min", "15 min" };

titleParam2 = "Score to win:";
valuesParam2[] = { 10000, 5, 7, 10, 15, 20, 25, 30 };
defValueParam2 = 5;
textsParam2[] = { "Unlimited", 5, 7, 10, 15, 20, 25, 30 };

Example:

hint format ["param1 = %1\nparam2 = %2", param1, param2];


params

See Arma 3 Mission Parameters for more detailed informations.



Mission settings

These are non-editable, mission maker design settings. They can be used for a smoother experience, briefing/debriefing behaviour, saving options, etc.
See also Debriefing for more detailed informations.


aiKills

Enables scorelist for AI players

aiKills = 1;


briefing

Skip briefing screen for SP missions. If no briefing.html is present, it is skipped anyway.

briefing = 0; // 0: disabled - 1: enabled. Default: 1

Briefing will still be displayed until all clients are connected and done loading.


debriefing

Defines if the debriefing is shown or not at the end of the mission.

debriefing = 0; // 0: disabled - 1: enabled. Default: 1


CfgDebriefing

Define custom mission endings or override the default endings (found under CfgDebriefing in the game's config file).

class CfgDebriefing
{
	// Used when all players die in MP
	class endDeath
	{
		title = "Both teams have died.";
		description = "Everyone was killed by the bomb.";
		picture = "KIA";
	};
};


CfgDebriefingSections

Define custom sections to be displayed on the debriefing screen. Useful for custom scoring systems or displaying player achievements.

class CfgDebriefingSections
{
	class bPoints
	{
		title = "Blufor Points";
		variable = "BLU_P";
	};
	class oPoints
	{
		title = "Opfor Points";
		variable = "OPF_P";
	};
};


disableChannels

Disable global, side, command and system chat. MOTD and admin say have exception and will show in global. Introduced in Arma 2 Arrowhead BETA 1.60.93398.

// old syntax
disableChannels[] = { <channelID>, <channelID> … };
Example:  disableChannels[] = { 0, 1, 2 };

// new syntax
disableChannels[] = { { <channelID>, <disableChat>, <disableVoice> }, … };
Example:  disableChannels[] = { { 0, true, true }, { 1, true, false }, … };
  • channelID number correspondence:
    • 0 = Global
    • 1 = Side
    • 2 = Command
    • 3 = Group
    • 4 = Vehicle
    • 5 = Direct
    • 6 = System


disabledAI

Multiplayer setting that removes all playable units which do not have a human player.
When AI is disabled, a player logging out will not have AI take control of his character.

Disabling AI units will prevent JIP into playable units.
disabledAI = 1; // 0: disabled - 1: enabled. Default: 0


disableRandomization

Disables randomization on certain objects, object types or object kinds in the mission.

disableRandomization[] = { "All", "AllVehicles", "B_G_Offroad_01_F", "myCar", "MyUnitName", "B_Soldier_F" };


enableDebugConsole

Allows access to the Debug Console outside of the editor during normal gameplay

enableDebugConsole = 2; // dangerous in MP
  • 0 = Default behavior, available only in editor
  • 1 = Available in SP and for hosts / logged in admins
  • 2 = Available for everyone

Alternative since Arma 3 logo black.png1.72

enableDebugConsole[] = {"76561198XXXXXXXXX"}; // player with the UID and admin has access


enableItemsDropping

Disable dropping items while swimming. Introduced in BETA 1.60.93965.

enableItemsDropping = 0; // 0: disabled - 1: enabled. Default: ?


enableTeamSwitch

Enables or disables Team Switch functionality in MP when respawn type is 5 (SIDE).

enableTeamSwitch = 0; // 0: disabled - 1: enabled. Default: 1


forceRotorLibSimulation

Force enable or disable RotorLib.

forceRotorLibSimulation = 1; // 0: options based - 1: enabled - 2: disabled. Default: 0


joinUnassigned

By default a new player is not auto assigned a free playable slot in the mission lobby in Multiplayer. Disable this setting to make him auto assigned to the side with least players.

joinUnassigned = 0; // 0: disabled - 1: enabled. Default: 1


minScore, avgScore, maxScore

Set minimum, average and maximum score for your mission. Score is related to the star display in the debriefing screen (OFP:CWC). The score can be influenced during a missions progress by using the addRating command.

minScore = 0;
avgScore = 1800;
maxScore = 75000;
Values have to follow this formula: minScore < avgScore < maxScore. Any other combinations can lead to game freeze upon mission end.


-wrong parameter ("Arma") defined!-1.00

onCheat

Executes custom statement when player enters GETALLGEAR cheat (see: GETALLGEAR).

onCheat = "hint str _this";


onPauseScript

Executes a custom SQF script or function in scheduled environment (execVM) when player brings up Game Pause screen (presses 'Esc' button). Display parameter of the resulting dialog is available via (_this select 0) inside the script.

onPauseScript = "myOnPauseScript.sqf";
onPauseScript[] = { myOnPauseFunction1, myOnPauseFunction2 }; // Arma 3

NOTE: The script or function executes in its own namespace, so in order to pass external global variable to the script you need to explicitly indicate namespace passed variable defined in. For example, while expression like myVar = "123"; defined elsewhere usually is treated as if myVar belongs to missionNamespace, inside onPauseScript you have to be explicit about it:

hint str myVar; // Undefined variable myVar error!
hint str (missionNamespace getVariable "myVar"); // 123

The above is also true if defining global variable inside onPauseScript for use elsewhere:

myVar2 = "345"; // incorrect
missionNamespace setVariable ["myVar2", "345"]; // correct


-wrong parameter ("Arma") defined!-1.00

saving

Toggle saving possibility.

saving = 0; // 0: disabled - 1: enabled. Default: 1


scriptedPlayer

When scripted player is enabled, game no longer shows "No player select" error message upon mission start when no player unit is present.

scriptedPlayer = 1; // 0: disabled - 1: enabled. Default: 1


skipLobby

When enabled, joining player will join the mission bypassing role selection screen. The joinUnassigned param will be set to 1 automatically, so that player receives 1st available role from mission template. When leaving such mission, player will go straight back to server browser.

skipLobby = 1; // 0: disabled - 1: enabled. Default: 0



Server security

This section underlines mission security settings for server. They can secure or break your mission, so be sure to use them wisely.


allowFunctionsLog

Allows functions to log to the RPT file. Set it to 1/true to allow RPT logging.

allowFunctionsLog = 1; // 0: disabled - 1: enabled. Default: ?


allowFunctionsRecompile

As a security measure, functions are by default protected against rewriting during the mission. This restriction does not apply in missions previewed from the editor and in missions with the following attribute in Description.ext

allowFunctionsRecompile = 1; // 0: disabled - 1: enabled. Default: 0


CfgRemoteExec

Define remoteExec and remoteExecCall restrictions. See CfgRemoteExec for more detailed explanations.

class CfgRemoteExec
{
	// List of script functions allowed to be sent from client via remoteExec
	class Functions
	{
		// RemoteExec modes: 
		// 0-turned off
		// 1-turned on, taking whitelist into account
		// 2-turned on, ignoring whitelist (default, because of backward compatibility)
		mode = 2;

		// Ability to send jip messages: 0-disabled, 1-enabled (default)
		jip = 1;

		// your functions here
		class BIS_fnc_aFunction
		{
			allowedTargets = 0;	// can target anyone (default)
			jip = 0;		// sending jip messages is disabled for this function
						// (overrides settings in the Functions class)
		};
		class YourFunctionOne { allowedTargets = 1; }; // can target only clients
		class YourFunctionTwo { allowedTargets = 2; }; // can target only the server
	};

	// List of script commands allowed to be sent from client via remoteExec
	class Commands
	{
		// your commands here
		class setDir
		{
			allowedTargets = 2;	// can target only the server
			jip = 0;		// sending jip is turned off
						// (overrides settings in the Commands class)
		};
	};
};


CfgRemoteExecCommands

Define commands available for remote execution with BIS_fnc_MP. See CfgRemoteExecCommands for more detailed explanations.

class CfgRemoteExecCommands {}; // disable remote execution of all commands


CfgDisabledCommands

Disable certain script commands. See CfgDisabledCommands for more detailed explanations.



Tasks

Tasks are part of the mission. This section deals with the settings for them.
See also Arma 3 Tasks Overhaul, Shared Objectives.


taskManagement_markers2D

Use new 2D markers

taskManagement_markers2D = 1; // 0: disabled - 1: enabled. Default: 0


taskManagement_markers3D

Use new 3D markers

taskManagement_markers3D = 1; // 0: disabled - 1: enabled. Default: 0


taskManagement_propagate

Propagate shared tasks to subordinates

taskManagement_propagate = 1; // 0: disabled - 1: enabled. Default: 0


taskManagement_drawDist

3D marker maximum draw distance in meters. within this range, unassigned tasks are drawn on screen.

taskManagement_drawDist = 2500; // in meters. Default: 2000


CfgTaskTypes

Define Task types and their icons.

class CfgTaskTypes
{
	class Attack
	{
		icon     = \A3\UI_F_MP_Mark\Data\Tasks\Types\Attack_ca.paa;
		icon3D   = \A3\UI_F_MP_Mark\Data\Tasks\Types3D\Attack_ca.paa;
	};
	class Defend
	{
		icon     = \A3\UI_F_MP_Mark\Data\Tasks\Types\Defend_ca.paa;
		icon3D   = \A3\UI_F_MP_Mark\Data\Tasks\Types3D\Defend_ca.paa;
	};
};


CfgTaskDescriptions

Define Task titles and descriptions.

class CfgTaskDescriptions
{
	class myTask1
	{
		title		= "myTaskTitle";
		description	= "myTaskDescription";
		marker		= "myTaskDestinationMarker";
	};
	class myTask2
	{
		title		= $STR_myTask2Title;
		description	= $STR_myTask2Description;
		marker		= $STR_myTask2Marker;
	};
};



Custom content definition

These class definitions allow for mission-defined content like sounds, music, or more advanced content like functions.


CfgCameraEffects

Configure custom cameraEffect.

class CfgCameraEffects
{
	class Array
	{
		class External
		{
			type = 0;
			duration = 6;	// 3 seconds for some reason
			file = "";	//some kind of custom .p3d file for camera
		};
		class AutoTerminate: External
		{
			type = 3;	// CamChained
			chain[] = { "External", "Terminate" }; // Terminate will trigger after 3 seconds
		};
	};
};

Example:

"AutoTerminate" spawn {
	showCinemaBorder false;
	_dur = getNumber (missionConfigFile >> "CfgCameraEffects" >> "Array" >> _this >> "duration");
	_cam = "camera" camCreate (player modelToWorld [0, -100, 50]);
	_cam camSetTarget player; 
	_cam camSetRelPos [0, -0.1, 1.8]; 
	_cam camCommit _dur / 2; 
	_cam cameraEffect [_this, "Back"];
	waitUntil {camCommitted _cam};
	camDestroy _cam;
};


CfgFunctions

Define functions for your mission. See Functions Library for more detailed informations.


CfgIdentities

Define the identities of individual units, you can specify the face, type of glasses worn, voice, tone of voice and name of an identity. You then give a specific unit this identity by using the command setIdentity in the mission. Note: nameSound is only valid for Arma 3.

class CfgIdentities
{
	class MyLittleSoldier
	{
		name		= "Givens";
		nameSound	= "Givens"; // Arma 3 only!
		face		= "whiteHead_06";
		glasses		= "None";
		speaker		= "Male05ENG";
		pitch		= 1.1;
	};
};

Example:

player setIdentity "MyLittleSoldier";

See CfgIdentities for more detailed informations and valid options for face, glasses, speaker etc.


CfgLeaflets

Define leaflets for your missions. See Arma 3 Leaflets for more information.


CfgMusic

Defines music you can play with playMusic.

class CfgMusic
{
	tracks[] = {};
	class MarsIntro
	{
		name	= "";
		sound[]	= { "\music\filename.ogg", db + 0, 1.0 };
	};
	class Ludwig9
	{
		name	= "";
		sound[]	= { "\music\filename.ogg", db + 10, 1.0 };
	};
};

Name can be left blank as in the examples above. Only specify a name if you wish to access these sounds via the environment options of a trigger.
Title is the text string that will be displayed on the screen when the sound file is played. See also Stringtable.csv/Stringtable.xml.

Setting volume (db) of music far from zero will disable fadeMusic command. Optimal values are from -10 to 10.

Example:

playMusic "MarsIntro";


CfgNotifications

Define custom notifications to be shown with BIS_fnc_showNotification. See Notification for more detailed informations.

class CfgNotifications
{
	class MyNotification
	{
		// NOTE: title, iconPicture, iconText and description are filled by BIS_fnc_showNotification arguments
		title = "";          // Title displayed as text on black background
		iconPicture = "";    // Small icon displayed in left part
		iconText = "";       // Short text displayed over the icon
		description = "";    // Brief description displayed as structured text
		color[] = {1,1,1,1}; // Icon and description color
		duration = 5;        // How many seconds will the notification be displayed
		priority = 0;        // Priority; higher number = more important
		difficulty[] = {};   // Required difficulty settings - all difficulty settings have to be enabled
	};
};


CfgRadio

Defines radio sentences you can play with *Radio commands: customRadio, vehicleRadio, groupRadio, sideRadio, globalRadio

class CfgRadio
{
	sounds[] = {};
	class RadioMsg1
	{
		name	= "";
		sound[]	= { "\sound\filename1.ogg", db - 100, 1.0 };
		title	= "I am ready for your orders.";
	};
	class RadioMsg2
	{
		name	= "";
		sound[]	= { "\sound\filename2", db - 100, 1.0 }; // .wss implied
		title	= { $STR_RADIO_2 };
	};
};

Note that the location of the sound file is relative to the mission.

Use in missions:

unit sideRadio "RadioMsg2";


CfgSFX

See CfgSFX for more information.


CfgSounds

General sounds that can be used for dialog, voiceovers in the briefing etc.
See also commands playSound, say, say2D and say3D.

class CfgSounds
{
	sounds[] = {};
	class wolf1
	{
		// how the sound is referred to in the editor (e.g. trigger effects)
		name = "my_wolf_sound";

		// filename, volume, pitch, distance
		sound[] = {"fx\wolf1.ogg", 1, 1, 100};

		// subtitle delay in seconds, subtitle text 
		titles[] = { 1, "*wolf growls*" };
	};
	class wolf2
	{
		name = "my_other_wolf_sound";
		sound[] = {"fx\wolf2.ogg", 1, 1, 100};
		titles[] = { 1, "*wolf growls*" };
	};
};

Example:

playSound "wolf1";   // use the class name!
player say ["wolf1", 100];

See OFP ToadLife's tutorial for more detailed informations.

NOTE: Since Arma 3 v1.49.131710 it is possible to define AddOn sounds in mission config. In order to make engine look for the sound in AddOn, the sound path must start with @ (instead of \) for example:

class CfgSounds
{
	sounds[] = {};
	class addonsound1
	{
		name		= "sound from addon";
		// start path to sound file in AddOn with @
		sound[]		= { "@a3\Ui_F_Curator\Data\Sound\CfgSound\visionMode", 0.8, 1, 100 };
		titles[]	= { 0, "" };
	};
};


CfgUnitInsignia

Define custom unit insignia (shoulder patches). See Arma 3 Unit Insignia for more detailed informations.

class CfgUnitInsignia
{
	class 111thID
	{
		displayName = "111th Infantry Division";	// Name displayed in Arsenal
		author = "Bohemia Interactive";			// Author displayed in Arsenal
		texture = "\a3\UI_F_Bootcamp\Data\CfgUnitInsignia\B_111thID_texture_ca.paa"; // Image path
		textureVehicle = "";				// Does nothing currently, reserved for future use
	};
};


CfgUnitTemplates

This class is used to create units templates. For now, this is only used with the function BIS_fnc_unitHeadgear.

class CfgUnitTemplates
{
	// Classic selectRandom
	// [myUnit, "MyFirstTemplate"] call bis_fnc_unitHeadgear;
	class MyFirstTemplate: Default
	{
		headgearList[] =
		{
			"H_Cap_blk",
			"H_Cap_grn",
			"H_Cap_oli_hs"
		};
		facewearList[] =
		{
			"G_Bandanna_beast",
			"G_Bandanna_blk",
			"G_Bandanna_khk"
		};
	};

	// the probabilities will be considered, weighted random
	// [myUnit, "MySecondTemplate"] call bis_fnc_unitHeadgear;
	class MySecondTemplate: Default
	{
		headgearList[] =
		{
			"H_Cap_blk",	0.9,
			"H_Cap_grn",	0.6,
			"H_Cap_oli_hs",	0.55
		};
		facewearList[] =
		{
			"G_Bandanna_beast",	0.5,
			"G_Bandanna_blk",	0.5,
			"G_Bandanna_khk",	0.5
		};
	};
};


CfgVehicles

This class can only be used to create sound sources, since Arma 3 v1.69.141183.
See also CfgSFX for more detailed informations.

class CfgVehicles
{
	class MyOwlSound // class name to be used with createSoundSource
	{
		sound = "MyOwl"; // reference to CfgSFX class
	};
};


CfgVehicleTemplates

This class is used to create vehicle templates used by the |Vehicle Customization system.
class CfgVehicleTemplates
{
	class BIS_Offroad_01_default
	{
		displayName = "Default"; 
		author = "Bohemia Interactive"; 
		textureList[] =
		{
			"guerilla_01", 1,
			"guerilla_02", 1
		};
		animationList[] =
		{
			"HideBumper1", 1, 
			"HideBumper2", 1
		};
	};
};


rscTitles

Defines custom UI displays. To show such displays, use cutRsc or titleRsc.