mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
257d9536cc
* First Push Added the ability to edit cargo objects (crates/boxes only) names. Either via in-game action on the object it self or via 3den attributes. Added a single function which spawns the UI to edit the name and also edits it. This is an scripted UI, it could be changed to a config version if wanted, but as I'm not good in UI coding I left it on this simple version mainly for testing. Added 4 new stringtable entries, 2 for action and 2 for 3den attributes. * Add extra stringtable Forgot to add the UI to the stringtable. * Update fnc_renameObject.sqf fixing tabs * Show custom name only behind Added new function "getNameItem" that will get the items name. Put the custom name behind the original name between brackets "[...]". * Added "Hide Rename Action" setting Also removed an unused _itemClass from postInit. * Apply suggestions from code review Co-authored-by: jonpas <jonpas33@gmail.com> * Update AUTHORS.txt Added my name * Applied the sugesstions. * Fixed function crash * Moved to dialog. * Removed unused comment/code * Update renameMenu.hpp Fixed tabs to spaces. * Update renameMenu.hpp * move rename to common * Update addons/arsenal/ui/RscAttributes.hpp * style and use addActionToObject Co-authored-by: jonpas <jonpas33@gmail.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com>
45 lines
1.7 KiB
Plaintext
45 lines
1.7 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;
|