mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
14 lines
350 B
Plaintext
14 lines
350 B
Plaintext
private _category = [LELSTRING(common,categoryUncategorized), LLSTRING(aceNews)];
|
|
|
|
[
|
|
QGVAR(showNewsOnMainMenu), "CHECKBOX",
|
|
LSTRING(showNewsOnMainMenu_name),
|
|
_category,
|
|
true,
|
|
0,
|
|
{
|
|
if (!hasInterface) exitWith {};
|
|
profileNamespace setVariable [QGVAR(showNewsOnMainMenu), _this];
|
|
}
|
|
] call CBA_fnc_addSetting;
|