mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
2a4355dfb9
* Add setting for carry after cargo unload * Fix typos * Contributors * Don't make setting global * Update addons/cargo/stringtable.xml Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com> Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com>
54 lines
2.0 KiB
Plaintext
54 lines
2.0 KiB
Plaintext
[
|
|
QGVAR(enable), "CHECKBOX",
|
|
[LSTRING(ModuleSettings_enable), LSTRING(ModuleSettings_enable_Description)],
|
|
[LELSTRING(OptionsMenu,CategoryLogistics), LLSTRING(openMenu)],
|
|
true,
|
|
true,
|
|
{[QGVAR(enable), _this] call EFUNC(common,cbaSettings_settingChanged)}
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(loadTimeCoefficient), "SLIDER",
|
|
[LSTRING(loadTimeCoefficient), LSTRING(loadTimeCoefficient_description)],
|
|
[LELSTRING(OptionsMenu,CategoryLogistics), LLSTRING(openMenu)],
|
|
[0, 10, 5, 1],
|
|
true,
|
|
{[QGVAR(loadTimeCoefficient), _this, true] call EFUNC(common,cbaSettings_settingChanged)}
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(paradropTimeCoefficent), "SLIDER",
|
|
[LSTRING(paradropTimeCoefficent), LSTRING(paradropTimeCoefficent_description)],
|
|
[LELSTRING(OptionsMenu,CategoryLogistics), LLSTRING(openMenu)],
|
|
[0, 10, 2.5, 1],
|
|
true,
|
|
{[QGVAR(paradropTimeCoefficent), _this, true] call EFUNC(common,cbaSettings_settingChanged)}
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
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;
|
|
|
|
[
|
|
QGVAR(enableRename), "CHECKBOX",
|
|
[LSTRING(ModuleSettings_enableRename), LSTRING(ModuleSettings_enableRename_Description)],
|
|
[LELSTRING(OptionsMenu,CategoryLogistics), LLSTRING(openMenu)],
|
|
true,
|
|
false,
|
|
{[QGVAR(enableRename), _this, true] call EFUNC(common,cbaSettings_settingChanged)}
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(carryAfterUnload), "CHECKBOX",
|
|
[LSTRING(carryAfterUnload), LSTRING(carryAfterUnload_description)],
|
|
[LELSTRING(OptionsMenu,CategoryLogistics), LLSTRING(openMenu)],
|
|
true,
|
|
false,
|
|
{[QGVAR(carryAfterUnload), _this] call EFUNC(common,cbaSettings_settingChanged)}
|
|
] call CBA_fnc_addSetting;
|