setMissionOptions: Difference between revisions

From Bohemia Interactive Community
m (Some wiki formatting)
(AIThinkOnlyLocal)
 
(10 intermediate revisions by 4 users not shown)
Line 8: Line 8:
|gr1= System
|gr1= System


|descr= Sets various mission options. The options are automatically reset between missions and are saved/restored with the save system.
|descr= Sets various mission options. The options are automatically reset between missions and are saved/restored with the save system.<br>
Available Options:


Providing an empty array will reset all options to defaults.
* IgnoreNoDamage: [[Boolean]] - (default [[false]]) [[true]] to filter out no change in damage from {{Link|Arma 3: Event Handlers#HandleDamage|HandleDamage}} calls
* IgnoreFakeHeadHit: [[Boolean]] - (default [[false]]) [[true]] to filter out FakeHeadHit context from {{Link|Arma 3: Event Handlers#HandleDamage|HandleDamage}} calls
* IgnoreUpsideDownDamage: [[Boolean]] - (default [[false]]) [[true]] to ignore some minor upside down damage accumulation for a helicopter
* {{GVI|arma3|2.20|size= 0.75}} SnakesCanOpenDoors: [[Boolean]] - (default [[false]]) [[true]] to revert to legacy behaviour when snakes would open doors when entering houses
* {{GVI|arma3|2.20|size= 0.75}} AIThinkOnlyLocal: [[Boolean]] - (default [[false]]) [[true]] to disable processing targetting data for remote AI units, [[knowsAbout]], [[targets]] and similar commands will cease to work on remote units. For a gain in client performance because they no longer have to calculate all AI units.


|s1= [[setMissionOptions]] [ignoreNoDamage, ignoreFakeHeadHit]
Providing a empty HashMap will reset all options to defaults.


|p1=  
|s1= [[setMissionOptions]] options


|p1= ignoreNoDamage: [[Boolean]] - (default [[false]]) [[true]] to filter out no change in damage from {{Link|Arma 3: Event Handlers#HandleDamage|HandleDamage}} calls
|p1= options: [[HashMap]] - a HashMap containing all the options to be changed
 
|p2= ignoreFakeHeadHit: [[Boolean]] - (default [[false]]) [[true]] to filter out FakeHeadHit context from {{Link|Arma 3: Event Handlers#HandleDamage|HandleDamage}} calls


|r1= [[Nothing]]
|r1= [[Nothing]]


|x1= <sqf>setMissionOptions [true, true];</sqf>
|x1= <sqf>setMissionOptions createHashMapFromArray [["IgnoreNoDamage", true], ["IgnoreFakeHeadHit", true], ["IgnoreUpsideDownDamage", true]];</sqf>


|x2= <sqf>setMissionOptions []; // reset options to default</sqf>
|x2= <sqf>setMissionOptions createHashMap; // reset options to default</sqf>


|seealso= [[getMissionOptions]] [[getResolution]] [[getAudioOptionVolumes]] [[getSubtitleOptions]]
|seealso= [[getMissionOptions]] [[getResolution]] [[getAudioOptionVolumes]] [[getSubtitleOptions]]
}}
}}

Latest revision as of 15:36, 25 March 2025

Hover & click on the images for description

Description

Description:
Sets various mission options. The options are automatically reset between missions and are saved/restored with the save system.
Available Options:
  • IgnoreNoDamage: Boolean - (default false) true to filter out no change in damage from HandleDamage calls
  • IgnoreFakeHeadHit: Boolean - (default false) true to filter out FakeHeadHit context from HandleDamage calls
  • IgnoreUpsideDownDamage: Boolean - (default false) true to ignore some minor upside down damage accumulation for a helicopter
  • Arma 3 logo black.png 2.20 SnakesCanOpenDoors: Boolean - (default false) true to revert to legacy behaviour when snakes would open doors when entering houses
  • Arma 3 logo black.png 2.20 AIThinkOnlyLocal: Boolean - (default false) true to disable processing targetting data for remote AI units, knowsAbout, targets and similar commands will cease to work on remote units. For a gain in client performance because they no longer have to calculate all AI units.
Providing a empty HashMap will reset all options to defaults.
Groups:
System

Syntax

Syntax:
setMissionOptions options
Parameters:
options: HashMap - a HashMap containing all the options to be changed
Return Value:
Nothing

Examples

Example 1:
setMissionOptions createHashMapFromArray [["IgnoreNoDamage", true], ["IgnoreFakeHeadHit", true], ["IgnoreUpsideDownDamage", true]];
Example 2:
setMissionOptions createHashMap; // reset options to default

Additional Information

See also:
getMissionOptions getResolution getAudioOptionVolumes getSubtitleOptions

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note