forked from IDI-Systems/acre2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinitSettings.inc.sqf
32 lines (29 loc) · 912 Bytes
/
initSettings.inc.sqf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
private _zeusCategory = format ["ACRE2 %1", localize "str_a3_cfghints_curator_curator_displayname"];
// Default remote controlled voice source
[
QGVAR(zeusDefaultVoiceSource),
"LIST",
LLSTRING(ZeusDefaultVoiceSource_DisplayName),
_zeusCategory,
[
[false, true],
["str_a3_cfgvehicles_moduleremotecontrol_f", "STR_A3_Leaderboards_Header_Player"],
0
]
] call CBA_fnc_addSetting;
// Ability to communicate through the Zeus camera
[
QGVAR(zeusCommunicateViaCamera),
"CHECKBOX",
[LLSTRING(ZeusCommunicateViaCamera_DisplayName), LLSTRING(zeusCommunicateViaCamera_Description)],
_zeusCategory,
true
] call CBA_fnc_addSetting;
// Ability to join the spectator chat
[
QGVAR(zeusCanSpectate),
"CHECKBOX",
[LLSTRING(ZeusCanSpectate_DisplayName), LLSTRING(ZeusCanSpectate_Description)],
_zeusCategory,
true
] call CBA_fnc_addSetting;