mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
c28a3d6cdf
* Kill Tracker - Add setting to show kills from vehicle to crew * Update addons/killtracker/XEH_postInit.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> --------- Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
18 lines
360 B
Plaintext
18 lines
360 B
Plaintext
[
|
|
QGVAR(trackAI),
|
|
"CHECKBOX",
|
|
[LSTRING(TrackAI_DisplayName), LSTRING(TrackAI_Description)],
|
|
LSTRING(Category),
|
|
true,
|
|
1
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(showCrewKills),
|
|
"CHECKBOX",
|
|
[LSTRING(showCrewKills_DisplayName), LSTRING(showCrewKills_Description)],
|
|
LSTRING(Category),
|
|
false,
|
|
1
|
|
] call CBA_fnc_addSetting;
|