forceCadetDifficulty: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(example)
mNo edit summary
(3 intermediate revisions by 2 users not shown)
Line 10: Line 10:


|serverExec=  |Multiplayer Execution ("server" or empty)=
|serverExec=  |Multiplayer Execution ("server" or empty)=
|gr1= Difficulty |GROUP1=
____________________________________________________________________________________________
____________________________________________________________________________________________


|descr= Force Cadet Difficulty assistance. |Description=
|descr= Forces <tt>showCadetHints</tt> and <tt>showCadetWP</tt> global Cadet [[Arma_3_Difficulty_Menu | Arma 3 difficulty]], returns previous settings. |Description=


|mp= |Multiplayer Behaviour=
|mp= |Multiplayer Behaviour=
Line 19: Line 21:
____________________________________________________________________________________________
____________________________________________________________________________________________


|s1= [[forceCadetDifficulty]] [showHints, showWaypoints] |Syntax=
|s1= [[forceCadetDifficulty]] [showCadetHints, showCadetWP] |Syntax=


|p1= showHints: [[Boolean]] |Parameter 1=
|p1= showCadetHints: [[Boolean]] - <tt>showCadetHints</tt> difficulty|Parameter 1=


|p2= showWaypoints: [[Boolean]] |Parameter 2=
|p2= showCadetWP: [[Boolean]] - <tt>showCadetWP</tt> difficulty|Parameter 2=


|r1= [[Array]] of [[Boolean]]s - [previousShowHintsSetting, previousShowWaypointsSetting] |Return Value=
|r1= [[Array]] of [[Boolean]]s - [prev_showCadetHints, prev_showCadetWP] |Return Value=
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 60: Line 62:
};
};
<nowiki>[</nowiki>[[true]]] [[call]] _fnc_forceCadetDifficulty;
<nowiki>[</nowiki>[[true]]] [[call]] _fnc_forceCadetDifficulty;
<nowiki>[</nowiki>[[missionNamespace]], "GameOptionsExited", _fnc_forceCadetDifficulty] [[call]] [[BIS_fnc_addScriptedEventHandler]];</code> |Example 2=
<nowiki>[</nowiki>[[missionNamespace]], "OnGameOptionsExited", _fnc_forceCadetDifficulty] [[call]] [[BIS_fnc_addScriptedEventHandler]];</code> |Example 2=
____________________________________________________________________________________________
____________________________________________________________________________________________


|seealso= [[difficulty]], [[cadetMode]], [[hintCadet]], [[Arma_3:_Event_Handlers/ScriptedEventHandlers]]|See Also=
|seealso= [[difficulty]], [[cadetMode]], [[hintCadet]], [[Arma_3:_Event_Handlers/ScriptedEventHandlers|Arma 3 Scripted Event Handlers]]|See Also=
}}
}}



Revision as of 01:02, 22 September 2020

-wrong parameter ("arma3dev") defined!-[[:Category:Introduced with arma3dev version |?]]
Hover & click on the images for description

Description

Description:
Forces showCadetHints and showCadetWP global Cadet Arma 3 difficulty, returns previous settings.
Groups:
Difficulty

Syntax

Syntax:
forceCadetDifficulty [showCadetHints, showCadetWP]
Parameters:
showCadetHints: Boolean - showCadetHints difficulty
showCadetWP: Boolean - showCadetWP difficulty
Return Value:
Array of Booleans - [prev_showCadetHints, prev_showCadetWP]

Examples

Example 1:
private _previousSettings = forceCadetDifficulty [true, false];
Example 2:
private _fnc_forceCadetDifficulty = { params ["_OKButtonPressed"]; if (_OKButtonPressed) then { forceCadetDifficulty (switch (toLowerANSI configName ((configFile >> "CfgDifficultyPresets") select difficulty)) do { case "recruit"; case "regular": { // showCadetHints = 1; // showCadetWP = 1; [true, true] }; case "veteran": { // showCadetHints = 0; // showCadetWP = 1; [false, true] }; default { // showCadetHints = 0; // showCadetWP = 0; [false, false] }; }); }; }; [true] call _fnc_forceCadetDifficulty; [missionNamespace, "OnGameOptionsExited", _fnc_forceCadetDifficulty] call BIS_fnc_addScriptedEventHandler;

Additional Information

See also:
difficultycadetModehintCadetArma 3 Scripted Event Handlers

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

[[Category:Introduced with arma3dev version ]][[ Category: arma3dev: New Scripting Commands | FORCECADETDIFFICULTY]][[ Category: arma3dev: Scripting Commands | FORCECADETDIFFICULTY]]

Bottom Section