mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
26d8b8d10a
* vd cleanup strings * Update addons/vehicle_damage/initSettings.sqf Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com> Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com>
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
[
|
|
QGVAR(enabled), "CHECKBOX",
|
|
[ELSTRING(common,Enabled), LSTRING(setting_description)],
|
|
LSTRING(category_displayName),
|
|
true, // default value
|
|
true, // isGlobal
|
|
{[QGVAR(enabled), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true // Needs mission restart
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(removeAmmoDuringCookoff), "CHECKBOX",
|
|
[LSTRING(removeAmmoAfterCookoff_setting_enable), LSTRING(removeAmmoAfterCookoff_setting_description)],
|
|
LSTRING(category_displayName),
|
|
true, // default value
|
|
true, // isGlobal
|
|
{[QGVAR(removeAmmoDuringCookoff), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
false // Needs mission restart
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(enableCarDamage), "CHECKBOX",
|
|
[LSTRING(carDamage_setting_enable), LSTRING(carDamage_setting_description)],
|
|
LSTRING(category_displayName),
|
|
false, // default value
|
|
true, // isGlobal
|
|
{[QGVAR(enableCarDamage), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true // Needs mission restart
|
|
] call CBA_settings_fnc_init;
|