ACE3/addons/radiodirectionfinder/initSettings.sqf

24 lines
722 B
Plaintext
Raw Normal View History

2019-09-06 03:58:27 +00:00
// CBA Settings [ADDON: ace_radiodirectionfinder]:
private _categoryArray = ["ACE Radiodirectionfinder"];
[
QGVAR(showUAV), "CHECKBOX",
["showUAV"], // [LSTRING(), LSTRING()],
_categoryArray,
true, // default value
true, // isGlobal
{[QGVAR(showUAV), _this] call EFUNC(common,cbaSettings_settingChanged)}
] call CBA_settings_fnc_init;
if (isClass (configFile >> "CfgPatches" >> "acre_sys_core")) then {
[
QGVAR(showACRE), "CHECKBOX",
["showACRE"], // [LSTRING(), LSTRING()],
_categoryArray,
false, // default value
true, // isGlobal
{[QGVAR(showACRE), _this] call EFUNC(common,cbaSettings_settingChanged)}
] call CBA_settings_fnc_init;
};