mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
dbe372cb48
* Code cleanup * Moved keybinds to initKeybinds.sqf * Update addons/dragging/initKeybinds.sqf Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> * Update addons/dragging/functions/fnc_carryObject.sqf Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> * Update addons/dragging/functions/fnc_getWeight.sqf Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> * Rephrasing and adjustments for dragging --------- Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
26 lines
639 B
Plaintext
26 lines
639 B
Plaintext
[
|
|
QGVAR(dragAndFire),
|
|
"CHECKBOX",
|
|
[LSTRING(DragAndFire_DisplayName), LSTRING(DragAndFire_Description)],
|
|
LLSTRING(SettingsName),
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(allowRunWithLightweight),
|
|
"CHECKBOX",
|
|
[LSTRING(allowRunWithLightweight_DisplayName), LSTRING(allowRunWithLightweight_Description)],
|
|
localize LSTRING(SettingsName),
|
|
true,
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(skipContainerWeight),
|
|
"CHECKBOX",
|
|
[LSTRING(skipContainerWeight_DisplayName), LSTRING(skipContainerWeight_Description)],
|
|
localize LSTRING(SettingsName),
|
|
false,
|
|
true
|
|
] call CBA_fnc_addSetting;
|