ACE3/addons/advanced_throwing/initSettings.inc.sqf
Fabio Schick c88e1abd0e
Weather - More permissive wind info indicator + auto-enabling when throwing grenades (#9820)
* More permissive displaying of Wind Info

* Temporary Wind Info while throwing Grenades

* Add Temporary Wind Info Setting

* Safer reading of EGVAR from addon that may not be loaded

* Show Wind Info only in Static Vehicles

* Improve Exclusion Check

Co-Authored-By: Grim <69561145+LinkIsGrim@users.noreply.github.com>

* Improve Abort Checks on Keybind Statements

Co-Authored-By: Grim <69561145+LinkIsGrim@users.noreply.github.com>

* Raise eyePos when inside Static Weapon

---------

Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
2024-03-26 09:59:48 -03:00

51 lines
1.1 KiB
Plaintext

private _category = format ["ACE %1", localize LSTRING(Category)];
[
QGVAR(enabled),
"CHECKBOX",
[LSTRING(Enable_DisplayName), LSTRING(Enable_Description)],
_category,
true,
0
] call CBA_fnc_addSetting;
[
QGVAR(showThrowArc),
"CHECKBOX",
[LSTRING(ShowThrowArc_DisplayName), LSTRING(ShowThrowArc_Description)],
_category,
true,
0
] call CBA_fnc_addSetting;
[
QGVAR(showMouseControls), "CHECKBOX",
[LSTRING(ShowMouseControls_DisplayName), LSTRING(ShowMouseControls_Description)],
_category,
true,
0
] call CBA_fnc_addSetting;
[
QGVAR(enablePickUp), "CHECKBOX",
[LSTRING(EnablePickUp_DisplayName), LSTRING(EnablePickUp_Description)],
_category,
true,
1
] call CBA_fnc_addSetting;
[
QGVAR(enablePickUpAttached), "CHECKBOX",
[LSTRING(EnablePickUpAttached_DisplayName), LSTRING(EnablePickUpAttached_Description)],
_category,
true,
1
] call CBA_fnc_addSetting;
[
QGVAR(enableTempWindInfo), "CHECKBOX",
[LSTRING(EnableTempWindInfo_DisplayName), LSTRING(EnableTempWindInfo_Description)],
_category,
true,
0
] call CBA_fnc_addSetting;