fixes unit gather method, ready

This commit is contained in:
2024-01-09 22:16:43 -08:00
parent 12dd0fc83c
commit 7630efeb4d
5 changed files with 82 additions and 147 deletions

View File

@@ -109,13 +109,22 @@
//---------------------
[
"milsim_client_medState3D_enabled",
"CHECKBOX",
["Enable 3D Triage Card State", "Draws a colored dot over units within 10m indicating current ACE Triage State"],
"Medical",
true
"milsim_client_medState3D_enabled", // variable
"CHECKBOX", // type
["Enable 3D Triage Card State", "Draws a colored dot over units within 10m indicating current ACE Triage State"], // title
["17th Battalion", "Medical"], // category
true // default value
] call CBA_fnc_addSetting;
[
"milsim_client_medState3D_drawRange", // variable
"LIST", // type
["Range To Draw Icons", "Determines range at which dots are visible"], // title
["17th Battalion", "Medical"], // category
[[2, 4, 6, 8, 10], ["2", "4", "6", "8", "10"], 4] // option values, option labels, default index
] call CBA_fnc_addSetting;
diag_log text "[MILSIM] (settings) Custom CBA settings initialized";
nil;