2018-07-05 16:29:32 +00:00
|
|
|
[
|
|
|
|
QGVAR(enable), "CHECKBOX",
|
|
|
|
[LSTRING(ModuleSettings_enable), LSTRING(ModuleSettings_enable_Description)],
|
2018-10-13 03:37:05 +00:00
|
|
|
[LELSTRING(OptionsMenu,CategoryLogistics), LLSTRING(openMenu)],
|
|
|
|
true,
|
|
|
|
true,
|
2018-07-05 16:29:32 +00:00
|
|
|
{[QGVAR(enable), _this] call EFUNC(common,cbaSettings_settingChanged)}
|
2021-02-18 18:58:26 +00:00
|
|
|
] call CBA_fnc_addSetting;
|
2018-07-05 16:29:32 +00:00
|
|
|
|
2018-10-13 03:37:05 +00:00
|
|
|
[
|
|
|
|
QGVAR(loadTimeCoefficient), "SLIDER",
|
|
|
|
[LSTRING(loadTimeCoefficient), LSTRING(loadTimeCoefficient_description)],
|
|
|
|
[LELSTRING(OptionsMenu,CategoryLogistics), LLSTRING(openMenu)],
|
2018-10-13 16:59:16 +00:00
|
|
|
[0, 10, 5, 1],
|
2018-10-13 03:37:05 +00:00
|
|
|
true,
|
|
|
|
{[QGVAR(loadTimeCoefficient), _this, true] call EFUNC(common,cbaSettings_settingChanged)}
|
2021-02-18 18:58:26 +00:00
|
|
|
] call CBA_fnc_addSetting;
|
2018-10-13 03:37:05 +00:00
|
|
|
|
2018-07-05 16:29:32 +00:00
|
|
|
[
|
|
|
|
QGVAR(paradropTimeCoefficent), "SLIDER",
|
|
|
|
[LSTRING(paradropTimeCoefficent), LSTRING(paradropTimeCoefficent_description)],
|
2018-10-13 03:37:05 +00:00
|
|
|
[LELSTRING(OptionsMenu,CategoryLogistics), LLSTRING(openMenu)],
|
|
|
|
[0, 10, 2.5, 1],
|
|
|
|
true,
|
|
|
|
{[QGVAR(paradropTimeCoefficent), _this, true] call EFUNC(common,cbaSettings_settingChanged)}
|
2021-02-18 18:58:26 +00:00
|
|
|
] call CBA_fnc_addSetting;
|
2021-10-10 13:37:16 +00:00
|
|
|
|
|
|
|
[
|
|
|
|
QGVAR(openAfterUnload), "LIST",
|
|
|
|
[LSTRING(openAfterUnload), LSTRING(openAfterUnload_description)],
|
|
|
|
[LELSTRING(OptionsMenu,CategoryLogistics), LLSTRING(openMenu)],
|
|
|
|
[[0, 1, 2, 3], [ELSTRING(common,never), LSTRING(unloadObject), LSTRING(paradropButton), ELSTRING(common,both)], 0],
|
|
|
|
false,
|
|
|
|
{[QGVAR(openAfterUnload), _this, true] call EFUNC(common,cbaSettings_settingChanged)}
|
|
|
|
] call CBA_fnc_addSetting;
|