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>
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
[
|
|
QGVAR(enableAI),
|
|
"CHECKBOX",
|
|
[LSTRING(ai_DisplayName), LSTRING(ai_Description)],
|
|
LSTRING(Settings_DisplayName),
|
|
false,
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(restrictModes),
|
|
"LIST",
|
|
[LSTRING(modes_DisplayName), LSTRING(modes_Description)],
|
|
LSTRING(Settings_DisplayName),
|
|
[[0, 1, 2, 3, 4], [LSTRING(modes_all), LSTRING(modes_unit), "STR_A3_Spectator_free_camera_tooltip", "STR_A3_Spectator_1pp_camera_tooltip", "STR_A3_Spectator_3pp_camera_tooltip"], 0],
|
|
true,
|
|
{},
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(restrictVisions),
|
|
"LIST",
|
|
[LSTRING(visions_DisplayName), LSTRING(visions_Description)],
|
|
LSTRING(Settings_DisplayName),
|
|
[[0, 1, 2, 3], [LSTRING(modes_all), LSTRING(visions_nv), LSTRING(visions_ti), "STR_Special_None"], 0],
|
|
true,
|
|
{},
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(maxFollowDistance),
|
|
"SLIDER",
|
|
[LSTRING(MaxFollowDistance_DisplayName), LSTRING(MaxFollowDistance_Description)],
|
|
LSTRING(Settings_DisplayName),
|
|
[5, 25, 5, 1],
|
|
false
|
|
] call CBA_fnc_addSetting;
|