mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
0d401b2664
* Headless optimisations * Swapped blacklist for unitIsUAV check * Moved UAV check * Update addons/headless/functions/fnc_transferGroups.sqf Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> * Update addons/headless/functions/fnc_transferGroups.sqf Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> * Update fnc_transferGroups.sqf --------- Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
53 lines
1.4 KiB
Plaintext
53 lines
1.4 KiB
Plaintext
[
|
|
QXGVAR(enabled),
|
|
"CHECKBOX",
|
|
[ELSTRING(common,Enabled), LSTRING(EnabledDesc)],
|
|
format ["ACE %1", LLSTRING(Module)],
|
|
false,
|
|
1,
|
|
{[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],
|
|
1,
|
|
{[QGVAR(delay), _this] call EFUNC(common,cbaSettings_settingChanged)}
|
|
] 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],
|
|
1,
|
|
{[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,
|
|
1,
|
|
{[QGVAR(enabled), _this] call EFUNC(common,cbaSettings_settingChanged)}
|
|
] 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],
|
|
1,
|
|
{},
|
|
true // needs mission restart
|
|
] call CBA_fnc_addSetting;
|