mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
67 lines
1.4 KiB
Plaintext
67 lines
1.4 KiB
Plaintext
[
|
|
QGVAR(enabledFromAmmoTrucks),
|
|
"CHECKBOX",
|
|
[LSTRING(EnabledFromAmmoTrucks), LSTRING(EnabledFromAmmoTrucks_description)],
|
|
LSTRING(Category_Pylons),
|
|
[true],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(enabledForZeus),
|
|
"CHECKBOX",
|
|
[LSTRING(EnabledForZeus), LSTRING(EnabledForZeus_description)],
|
|
LSTRING(Category_Pylons),
|
|
[true],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(rearmNewPylons),
|
|
"CHECKBOX",
|
|
[LSTRING(RearmNewPylons), LSTRING(RearmNewPylons_description)],
|
|
LSTRING(Category_Pylons),
|
|
[false],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(requireEngineer),
|
|
"CHECKBOX",
|
|
[LSTRING(RequireEngineer), LSTRING(RequireEngineer_description)],
|
|
LSTRING(Category_Pylons),
|
|
[false],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(requireToolkit),
|
|
"CHECKBOX",
|
|
[LSTRING(RequireToolkit), LSTRING(RequireToolkit_description)],
|
|
LSTRING(Category_Pylons),
|
|
[true],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(searchDistance),
|
|
"SLIDER",
|
|
[LSTRING(SearchDistance), LSTRING(SearchDistance_description)],
|
|
LSTRING(Category_Pylons),
|
|
[5, 50, 15, 0],
|
|
true,
|
|
{
|
|
params ["_searchDistance"];
|
|
GVAR(searchDistanceSqr) = _searchDistance ^ 2;
|
|
}
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(timePerPylon),
|
|
"SLIDER",
|
|
[LSTRING(TimePerPylon), LSTRING(TimePerPylon_description)],
|
|
LSTRING(Category_Pylons),
|
|
[1, 10, 5, 0],
|
|
true
|
|
] call CBA_fnc_addSetting;
|