setMissionOptions: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Some wiki formatting)
m (Text replacement - "↵|version1= 2.18" to " |version1= 2.18 |branch= dev")
(2 intermediate revisions by 2 users not shown)
Line 3: Line 3:
|game1= arma3
|game1= arma3
|version1= 2.18
|version1= 2.18
|branch= dev


|eff= local
|eff= local
Line 8: Line 10:
|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.


|s1= [[setMissionOptions]] [ignoreNoDamage, ignoreFakeHeadHit]
* 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


|p1=
Providing a empty HashMap will reset all options to defaults.


|p1= ignoreNoDamage: [[Boolean]] - (default [[false]]) [[true]] to filter out no change in damage from {{Link|Arma 3: Event Handlers#HandleDamage|HandleDamage}} calls
|s1= [[setMissionOptions]] options


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


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


|x1= <sqf>setMissionOptions [true, true];</sqf>
|x1= <sqf>setMissionOptions createHashMapFromArray [["IgnoreNoDamage", true], ["IgnoreFakeHeadHit", 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]]
}}
}}

Revision as of 22:50, 17 April 2024

Hover & click on the images for description
Only available in Development branch(es) until its release with Arma 3 patch v2.18.

Description

Description:
Sets various mission options. The options are automatically reset between missions and are saved/restored with the save system.
Available Options: 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]];
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