22 lines
540 B
Plaintext
22 lines
540 B
Plaintext
[
|
|
"milsim_resupply_setting_allowSupplyBoxScrollWheelSpawning", // variable
|
|
"CHECKBOX", // type
|
|
["Enabled", "If true, adds scroll wheel options to arsenal boxes to spawn supply boxes"], // title
|
|
["17th Battalion", "Resupply"], // category
|
|
false, // default value
|
|
true, // global setting
|
|
{
|
|
params ["_value"];
|
|
[
|
|
"resupply",
|
|
"SETTING CHANGED",
|
|
[
|
|
[
|
|
"setting",
|
|
"milsim_resupply_setting_allowSupplyBoxScrollWheelSpawning"
|
|
],
|
|
["newValue", _value]
|
|
]
|
|
] call milsim_fnc_log;
|
|
}
|
|
] call CBA_fnc_addSetting; |