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>
22 lines
851 B
Plaintext
22 lines
851 B
Plaintext
private _categoryName = [format ["ACE %1", localize "str_a3_cfgmarkers_nato_art"], LLSTRING(rangetable_displayName)];
|
|
|
|
[
|
|
QGVAR(advancedCorrections), "CHECKBOX",
|
|
[LSTRING(advancedCorrections_displayName), LSTRING(advancedCorrections_description)],
|
|
_categoryName,
|
|
false, // default value
|
|
true, // isGlobal
|
|
{[QGVAR(advancedCorrections), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true // Needs mission restart
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(disableArtilleryComputer), "CHECKBOX",
|
|
[LSTRING(disableArtilleryComputer_displayName), LSTRING(disableArtilleryComputer_description)],
|
|
_categoryName,
|
|
false, // default value
|
|
true, // isGlobal
|
|
{[QGVAR(disableArtilleryComputer), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
false // Needs mission restart
|
|
] call CBA_fnc_addSetting;
|