mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
1caf6fb08f
* Add rearm distance setting * Set rearm distance slider maximum at 50m * Update addons/rearm/stringtable.xml Co-Authored-By: Dedmen Miller <dedmen@users.noreply.github.com> * Fix rearm action check * Update addons/rearm/stringtable.xml Co-Authored-By: Dedmen Miller <dedmen@users.noreply.github.com> * Update addons/rearm/initSettings.sqf Co-Authored-By: PabstMirror <pabstmirror@gmail.com> * Update addons/rearm/functions/fnc_rearm.sqf Co-Authored-By: PabstMirror <pabstmirror@gmail.com>
29 lines
1.4 KiB
Plaintext
29 lines
1.4 KiB
Plaintext
// CBA Settings [ADDON: ace_rearm]:
|
|
|
|
[
|
|
QGVAR(level), "LIST",
|
|
[LSTRING(RearmSettings_level_DisplayName), LSTRING(RearmSettings_level_Description)],
|
|
[localize ELSTRING(OptionsMenu,CategoryLogistics), localize LSTRING(DisplayName)],
|
|
[[0,1,2],[LSTRING(RearmSettings_vehicle), LSTRING(RearmSettings_magazine), LSTRING(RearmSettings_caliber)],0], // [values, titles, defaultIndex]
|
|
true, // isGlobal
|
|
{[QGVAR(level), _this] call EFUNC(common,cbaSettings_settingChanged)}
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(supply), "LIST",
|
|
[LSTRING(RearmSettings_supply_DisplayName), LSTRING(RearmSettings_supply_Description)],
|
|
[localize ELSTRING(OptionsMenu,CategoryLogistics), localize LSTRING(DisplayName)],
|
|
[[0,1,2],[LSTRING(RearmSettings_unlimited), LSTRING(RearmSettings_limited), LSTRING(RearmSettings_magazineSupply)],0], // [values, titles, defaultIndex]
|
|
true, // isGlobal
|
|
{[QGVAR(supply), _this] call EFUNC(common,cbaSettings_settingChanged)}
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(distance), "SLIDER",
|
|
[localize LSTRING(RearmSettings_distance_DisplayName), localize LSTRING(RearmSettings_distance_Description)],
|
|
[localize ELSTRING(OptionsMenu,CategoryLogistics), localize LSTRING(DisplayName)],
|
|
[10, 50, 20, 0],
|
|
true, // isGlobal
|
|
{[QGVAR(supply), _this] call EFUNC(common,cbaSettings_settingChanged)}
|
|
] call CBA_settings_fnc_init;
|