mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
464ab0cefb
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: jonpas <jonpas33@gmail.com>
21 lines
494 B
Plaintext
21 lines
494 B
Plaintext
private _category = [LELSTRING(common,categoryUncategorized), localize "str_dn_parachute"];
|
|
|
|
[
|
|
QGVAR(hideAltimeter),
|
|
"CHECKBOX",
|
|
[LSTRING(HideAltimeter), LSTRING(HideAltimeter_tooltip)],
|
|
_category,
|
|
true,
|
|
false,
|
|
{[QGVAR(hideAltimeter), _this, false] call EFUNC(common,cbaSettings_settingChanged)}
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(failureChance),
|
|
"SLIDER",
|
|
LSTRING(FailureChance),
|
|
_category,
|
|
[0, 1, 0, 2, true],
|
|
1
|
|
] call CBA_fnc_addSetting;
|