difficulty: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "<h3 style='display:none'>Notes</h3> <dl class='command_description'> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl> <h3 style='display:none'>Bottom Section</h3>" to "") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
(22 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{ | {{RV|type=command | ||
| arma3 | |game1= arma3 | ||
|version1= 0.56 | |||
|0.56 | |||
|gr1= Difficulty | |gr1= Difficulty | ||
| Returns high-level selected difficulty mode. | |descr= Returns high-level selected difficulty mode. | ||
|s1= [[difficulty]] | |||
| | |r1= [[Number]] - Can be one of: | ||
* 0 (Recruit) | |||
* 1 (Regular) | |||
* 2 (Veteran) | |||
* 3 (Elite) | |||
| | |x1= <sqf> | ||
if (difficulty == 0) then | |||
{ | |||
hint "You will need to follow my lead - read the Field Manual!"; | |||
}; | |||
</sqf> | |||
|x2= [[File:Difficulty.jpg|400px|thumb|Note: "Insane" is a modded difficulty]] The command returns the index of selected difficulty as they appear in ''CfgDifficulties'': | |||
<sqf>hint str difficulty; //Result: 4</sqf> | |||
| | |seealso= [[difficultyOption]] [[Arma 3: Difficulty Settings]] [[missionDifficulty]] | ||
}} | |||
| | {{Note | ||
|user= POLPOX | |||
|timestamp= 20230822063121 | |||
|text= The return value can be overwritten by the [[Arma 3: Server Config File|forcedDifficulty]] by the server if it is a MP session. | |||
}} | }} | ||
Latest revision as of 13:13, 12 March 2024
Description
- Description:
- Returns high-level selected difficulty mode.
- Groups:
- Difficulty
Syntax
- Syntax:
- difficulty
- Return Value:
- Number - Can be one of:
- 0 (Recruit)
- 1 (Regular)
- 2 (Veteran)
- 3 (Elite)
Examples
- Example 1:
- Example 2:
- The command returns the index of selected difficulty as they appear in CfgDifficulties:
Additional Information
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
- Posted on Aug 22, 2023 - 06:31 (UTC)
- The return value can be overwritten by the forcedDifficulty by the server if it is a MP session.