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>
55 lines
1.4 KiB
Plaintext
55 lines
1.4 KiB
Plaintext
[
|
|
QXGVAR(enabled),
|
|
"CHECKBOX",
|
|
[ELSTRING(common,Enabled), LSTRING(EnabledDesc)],
|
|
format ["ACE %1", LLSTRING(Module)],
|
|
false,
|
|
true,
|
|
{[QGVAR(enabled), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QXGVAR(delay),
|
|
"SLIDER",
|
|
[LSTRING(Delay), LSTRING(DelayDesc)],
|
|
format ["ACE %1", LLSTRING(Module)],
|
|
[0, 60, 15, -1],
|
|
true,
|
|
{[QGVAR(delay), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QXGVAR(endMission),
|
|
"LIST",
|
|
[LSTRING(EndMission), LSTRING(EndMissionDesc)],
|
|
format ["ACE %1", LLSTRING(Module)],
|
|
[[0, 1, 2], [ELSTRING(Common,Disabled), LSTRING(Instant), LSTRING(Delayed)], 0],
|
|
true,
|
|
{[QGVAR(delay), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QXGVAR(log),
|
|
"CHECKBOX",
|
|
[LSTRING(Log), LSTRING(LogDesc)],
|
|
format ["ACE %1", LLSTRING(Module)],
|
|
false,
|
|
true,
|
|
{[QGVAR(enabled), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QXGVAR(transferLoadout),
|
|
"LIST",
|
|
[LSTRING(TransferLoadout), LSTRING(TransferLoadoutDesc)],
|
|
format ["ACE %1", LLSTRING(Module)],
|
|
[[0, 1, 2], [ELSTRING(Common,Disabled), LSTRING(TransferLoadoutCurrent), LSTRING(TransferLoadoutConfig)], 0],
|
|
true,
|
|
{},
|
|
true // needs mission restart
|
|
] call CBA_fnc_addSetting;
|