2020-10-03 17:00:06 +00:00
|
|
|
private _categoryStr = format ["ACE %1", LLSTRING(Menu)];
|
|
|
|
|
|
|
|
[
|
|
|
|
QGVAR(requireSpecialist),
|
|
|
|
"CHECKBOX",
|
|
|
|
[LLSTRING(RequireSpecialist_DisplayName),LLSTRING(RequireSpecialist_Description)],
|
|
|
|
_categoryStr,
|
|
|
|
false,
|
2024-08-14 17:53:40 +00:00
|
|
|
1
|
2020-10-03 17:00:06 +00:00
|
|
|
] call CBA_fnc_addSetting;
|
|
|
|
|
|
|
|
[
|
|
|
|
QGVAR(punishNonSpecialists),
|
|
|
|
"CHECKBOX",
|
|
|
|
[LLSTRING(PunishNonSpecialists_DisplayName),LLSTRING(PunishNonSpecialists_Description)],
|
|
|
|
_categoryStr,
|
|
|
|
true,
|
2024-08-14 17:53:40 +00:00
|
|
|
1
|
2020-10-03 17:00:06 +00:00
|
|
|
] call CBA_fnc_addSetting;
|
|
|
|
|
|
|
|
[
|
|
|
|
QGVAR(explodeOnDefuse),
|
|
|
|
"CHECKBOX",
|
|
|
|
[LLSTRING(ExplodeOnDefuse_DisplayName),LLSTRING(ExplodeOnDefuse_Description)],
|
|
|
|
_categoryStr,
|
|
|
|
true,
|
2024-08-14 17:53:40 +00:00
|
|
|
1
|
2020-10-03 17:00:06 +00:00
|
|
|
] call CBA_fnc_addSetting;
|
|
|
|
|
|
|
|
// Variable names to preserve https://github.com/acemod/ACE3/pull/6882
|
|
|
|
[
|
|
|
|
QGVAR(customTimerMin),
|
|
|
|
"TIME",
|
|
|
|
[LLSTRING(TimerMin_DisplayName), LLSTRING(TimerMin_Description)],
|
|
|
|
[_categoryStr, LLSTRING(ExplosiveTimer)],
|
|
|
|
[0, 5999, TIMER_VALUE_MIN],
|
2024-08-14 17:53:40 +00:00
|
|
|
1
|
2020-10-03 17:00:06 +00:00
|
|
|
] call CBA_fnc_addSetting;
|
|
|
|
|
|
|
|
[
|
|
|
|
QGVAR(customTimerMax),
|
|
|
|
"TIME",
|
|
|
|
[LLSTRING(TimerMax_DisplayName), LLSTRING(TimerMax_Description)],
|
|
|
|
[_categoryStr, LLSTRING(ExplosiveTimer)],
|
|
|
|
[0, 5999, TIMER_VALUE_MAX],
|
2024-08-14 17:53:40 +00:00
|
|
|
1
|
2020-10-03 17:00:06 +00:00
|
|
|
] call CBA_fnc_addSetting;
|
|
|
|
|
|
|
|
[
|
|
|
|
QGVAR(customTimerDefault),
|
|
|
|
"TIME",
|
|
|
|
[LLSTRING(TimerDefault_DisplayName), LLSTRING(TimerDefault_Description)],
|
|
|
|
[_categoryStr, LLSTRING(ExplosiveTimer)],
|
2024-08-14 17:53:40 +00:00
|
|
|
[0, 5999, TIMER_VALUE_DEFAULT]
|
2020-10-03 17:00:06 +00:00
|
|
|
] call CBA_fnc_addSetting;
|