mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
69c3d2bb65
* Add Weapon Attachments interaction * Apply recommended changes * Format addPEH Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com> * Remove toLower * Update required CBA version * Rename category to Accessories * Change setting var name * Add setting description * Fix notification size * Optimize with new commands Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com>
32 lines
967 B
Plaintext
32 lines
967 B
Plaintext
[
|
|
QGVAR(enableTeamManagement), "CHECKBOX",
|
|
[LSTRING(EnableTeamManagement_DisplayName), LSTRING(EnableTeamManagement_Description)],
|
|
format ["ACE %1", LLSTRING(DisplayName)],
|
|
true,
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(enableMagazinePassing), "CHECKBOX",
|
|
LSTRING(PassMagazineSetting),
|
|
format ["ACE %1", LLSTRING(DisplayName)],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(disableNegativeRating), "CHECKBOX",
|
|
[LSTRING(DisableNegativeRating_DisplayName), LSTRING(DisableNegativeRating_Description)],
|
|
format ["ACE %1", LLSTRING(DisplayName)],
|
|
false,
|
|
true,
|
|
{[QGVAR(disableNegativeRating), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(enableWeaponAttachments), "CHECKBOX",
|
|
["str_a3_cfgeditorcategories_edcat_weaponattachments0", LSTRING(weaponAttachments_Description)],
|
|
format ["ACE %1", LLSTRING(DisplayName)],
|
|
true
|
|
] call CBA_fnc_addSetting;
|