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>
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
[
|
|
QGVAR(enabled), "CHECKBOX",
|
|
[ELSTRING(common,Enabled), LSTRING(Setting_Description)],
|
|
LSTRING(Category_DisplayName),
|
|
true, // default value
|
|
true, // isGlobal
|
|
{[QGVAR(fireEnabled), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true // Needs mission restart
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(enableFlare), "CHECKBOX",
|
|
[LSTRING(Setting_FlareEnable), LSTRING(Setting_FlareDescription)],
|
|
LSTRING(Category_DisplayName),
|
|
false, // default value
|
|
true, // isGlobal
|
|
{[QGVAR(flareEnabled), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true // Needs mission restart
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(dropWeapon), "LIST",
|
|
[LSTRING(Setting_DropWeapon), LSTRING(Setting_DropWeapon_Description)],
|
|
LSTRING(Category_DisplayName),
|
|
[
|
|
[0,1,2],
|
|
[localize "STR_A3_OPTIONS_DISABLED", ELSTRING(common,aiOnly), ELSTRING(common,playersAndAI)],
|
|
1
|
|
],
|
|
true // isGlobal
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(enableScreams), "CHECKBOX",
|
|
[LSTRING(Setting_EnableScreams), LSTRING(Setting_EnableScreams_Description)],
|
|
LSTRING(Category_DisplayName),
|
|
true,
|
|
false // isGlobal
|
|
] call CBA_fnc_addSetting;
|
|
|