Skip to content

Commit 42eb73f

Browse files
committed
v1.1.4
1 parent 8aaff99 commit 42eb73f

20 files changed

+288
-254
lines changed

@AIO_SPPack/addons/AIO_AIMENU.pbo

1.1 KB
Binary file not shown.

@AIO_SPPack/addons/AIO_AIMENU/XEH_preInit.sqf

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,14 @@
5959
["AIO_HC_Module_Enabled", "CHECKBOX", "Create High Command Module", ["All-In-One Command Menu", "Initialization"], false, 1, {}, true] call CBA_Settings_fnc_init;
6060
["AIO_becomeLeaderOnSwitch", "CHECKBOX", "Become Leader on Team Switch", ["All-In-One Command Menu", "Initialization"] ,false, 0] call CBA_Settings_fnc_init;
6161
["AIO_useVoiceChat", "CHECKBOX", "Use radio chat for reporting", ["All-In-One Command Menu", "Initialization"] ,true, 0] call CBA_Settings_fnc_init;
62-
["AIO_autoMedicEnabled", "CHECKBOX", "Enable Auto-Medic", ["All-In-One Command Menu", "Initialization"] ,false, 0] call CBA_Settings_fnc_init;
6362
["AIO_copyExactStance", "CHECKBOX", ["Use Exact Copy Stance", "Units follow the exact stance of player, including intermediate ones"], ["All-In-One Command Menu", "Initialization"] ,true, 0] call CBA_Settings_fnc_init;
6463
["AIO_useNumpadKeys", "LIST", ["Menu selection mode", "Choose the prefered method for selecting menu items"], ["All-In-One Command Menu", "Initialization"] ,[[false, true], ["Numeric Keys", "Numeric and Numpad Keys"], 0], 0] call CBA_Settings_fnc_init;
65-
["AIO_showMedicIcon", "CHECKBOX", "Show the medic icon when player is wounded", ["All-In-One Command Menu", "Initialization"] ,true, 0] call CBA_Settings_fnc_init;
64+
["AIO_useVanillaMenus", "CHECKBOX", ["Use Vanilla Menus", "Uses vanilla menus in the Root Menu instead of Custom ones"], ["All-In-One Command Menu", "Initialization"] ,false, 0] call CBA_Settings_fnc_init;
65+
66+
//medic
67+
["AIO_autoMedicEnabled", "CHECKBOX", "Enable Auto-Medic", ["All-In-One Command Menu", "Medic"] ,false, 0] call CBA_Settings_fnc_init;
68+
["AIO_showMedicIcon", "CHECKBOX", "Show the medic icon when player is wounded", ["All-In-One Command Menu", "Medic"] ,true, 0] call CBA_Settings_fnc_init;
69+
["AIO_healSpeedMultiplier", "SLIDER", ["Healing speed multiplier", "X > 1: Faster; X < 1 Slower. Only for healing others. Recommended a value above 0.5"], ["All-In-One Command Menu", "Medic"] ,[0.25, 2, 1, 2], 1] call CBA_Settings_fnc_init;
6670
//zeus
6771
["AIO_Zeus_Enabled", "CHECKBOX", "Create Zeus Module", ["All-In-One Command Menu", "Zeus"] ,true, 1] call CBA_Settings_fnc_init;
6872
["AIO_forceActivateAddons", "CHECKBOX", ["Force-enable all mods", "Mission makers can deactivate some addons. You can force activate them."], ["All-In-One Command Menu", "Zeus"] ,false, 1] call CBA_Settings_fnc_init;

@AIO_SPPack/addons/AIO_AIMENU/functions/cheats/fn_addAmmo.sqf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
params ["_units", "_type"];
22

3-
_units pushBackUnique player;
3+
if (count _units == 0) then {_units = [player]};
44

55
if (_type == 3) exitWith {
66
{

@AIO_SPPack/addons/AIO_AIMENU/functions/cheats/fn_teleport.sqf

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,18 @@ titleFadeOut 0.5;
1212
titleText ["Click on map to select the position you want to teleport to", "PLAIN"];
1313

1414
["AIO_mapSelect_singleClick", "onMapSingleClick", {
15-
_cnt = count _this;
16-
_units = _this select (_cnt - 1);
17-
_pos = _this select 1;
18-
{
19-
_veh = (vehicle _x);
20-
_state = ["NONE", "FLY"] select (_veh isKindOf "Air");
21-
_veh setVehiclePosition [_pos, [], 1, _state];
22-
} forEach _units;
15+
_this spawn {
16+
_cnt = count _this;
17+
_units = _this select (_cnt - 1);
18+
_pos = _this select 1;
19+
{
20+
_veh = (vehicle _x);
21+
_state = ["NONE", "FLY"] select (_veh isKindOf "Air");
22+
_veh setVehiclePosition [_pos vectorAdd [random 1, random 1, 0], [], 1, _state];
23+
sleep 0.2;
24+
} forEach _units;
25+
};
26+
["AIO_mapSelect_singleClick", "onMapSingleClick"] call BIS_fnc_removeStackedEventHandler;
2327
}, (_this + [_units])] call BIS_fnc_addStackedEventHandler;
2428

2529
waitUntil {!visibleMap};

@AIO_SPPack/addons/AIO_AIMENU/functions/driver/fn_helicopterMechanics.sqf

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@
2121

2222
_currentCollective = _velocity select 2;
2323
_desiredColl = _veh getVariable ["AIO_collective", 0];
24-
if (isTouchingGround _veh) then {_desiredColl = _desiredColl max -1};
24+
25+
_hasContact = isTouchingGround _veh;
26+
27+
if (_hasContact) then {_desiredColl = _desiredColl max -1};
2528

2629
_verticalVelocity = _currentCollective + _acc/_fps*(_desiredColl - _currentCollective);
2730

@@ -103,7 +106,6 @@
103106

104107
_skids = _veh getVariable ["AIO_skidPoints", []];
105108

106-
_hasContact = isTouchingGround _veh;
107109
/*
108110
{
109111
_skid = _veh modelToWorldWorld _x;
@@ -144,7 +146,7 @@
144146

145147
_height = _veh getVariable ["AIO_height", 0];
146148

147-
if (_height < 15 && _speed < 15) then {_veh action ["LandGear", _veh]};
149+
if (_height < 15 && _speed < 20) then {_veh action ["LandGear", _veh]};
148150

149151
if (_veh == AIO_vehiclePlayer) then {
150152
_disp = uiNamespace getVariable ['AIO_helicopter_UI', displayNull];

@AIO_SPPack/addons/AIO_AIMENU/functions/driver/fn_pilotLoop.sqf

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ waitUntil {
44

55
_loiter = _veh getVariable ["AIO_loiter", 0];
66

7-
_pos = getPosWorld _veh;
7+
_pos = getPosASL _veh;
88

99
_onCourse = true;
1010
_forcePitch = _veh getVariable ["AIO_forcePitch", false];
@@ -99,7 +99,7 @@ waitUntil {
9999
_contacts = [];
100100
{
101101
_skid =_veh modelToWorldWorld _x;
102-
_contacts = lineIntersectsSurfaces [_skid, _skid vectorDiff [0,0,_flightHeight], _veh, getSlingLoad _veh, true, 1, "GEOM", "FIRE"];
102+
_contacts = lineIntersectsSurfaces [_skid, _skid vectorDiff [0,0,(_flightHeight max 50)], _veh, getSlingLoad _veh, true, 1, "GEOM", "FIRE"];
103103
_cntContact = count _contacts;
104104
if (_cntContact > 0) exitWith {};
105105
} forEach _skids;
@@ -111,8 +111,11 @@ waitUntil {
111111
};
112112
};
113113
_terrainHeight = _terrainHeight max 0;
114-
_veh setVariable ["AIO_height", _vehHeight - _terrainHeight];
115-
_collective = ((((_terrainHeight + _flightHeight - _vehHeight) max -10) min 10) + (_veh getVariable ["AIO_collective", 0]))/2;
114+
_height = _vehHeight - _terrainHeight;
115+
_veh setVariable ["AIO_height", _height];
116+
if (surfaceIsWater _pos && _vehHeight < 2 && _flightHeight < 0) then {_flightHeight = 0};
117+
_max = [-10, (-0.66*(abs _height) min -1)] select (_height < 10);
118+
_collective = ((((_flightHeight - _height) max _max) min 10) + (_veh getVariable ["AIO_collective", 0]))/2;
116119
_veh setVariable ["AIO_collective", _collective];
117120
};
118121

@AIO_SPPack/addons/AIO_AIMENU/functions/init/fn_Menu.sqf

Lines changed: 33 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -12,67 +12,53 @@ AIO_rearmTargets = [];
1212
_inVeh = ["0", "1"] select (vehicle player != player);
1313

1414

15-
15+
_useNumpad = AIO_useNumpadKeys;
1616

1717
//-------------------------------------------------------------------VEH------------------------------------------------------------
1818
AIO_vehicle_subMenu =
1919
[
2020
["Vehicle Commands",true],
2121
[parseText"<img image='AIO_AIMENU\pictures\changeSeat.paa'/><t font='PuristaBold'> Switch Seats", [], "#USER:AIO_switchseat_subMenu", -5, [["expression", ""]], (_inVeh + "+NotEmptyInVehicle"), "1"],
22-
[parseText"<img image='\A3\ui_f\data\IGUI\Cfg\Cursors\getIn_ca.paa'/><t font='PuristaBold'> Mount", ([[2], [2, 79]] select AIO_useNumpadKeys), "#USER:AIO_mount_subMenu", -5, [["expression", ""]], "1", "NotEmpty"],
22+
[parseText"<img image='\A3\ui_f\data\IGUI\Cfg\Cursors\getIn_ca.paa'/><t font='PuristaBold'> Mount", ([[2], [2, 79]] select _useNumpad), "#USER:AIO_mount_subMenu", -5, [["expression", ""]], "1", "NotEmpty"],
2323
["", [], "", -1, [["expression", ""]], "1", "0"],
24-
[parseText"<img color='#8c5826' image='\A3\ui_f\data\IGUI\RscIngameUI\RscUnitInfo\role_driver_ca.paa'/><t font='PuristaBold'> Create Driver", ([[3], [3, 80]] select AIO_useNumpadKeys), "", -5, [["expression", "[(groupSelectedUnits player)] spawn AIO_fnc_createDriver"]], "1", _inVeh],
25-
[parseText"<img color='#FFFF00' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\land_ca.paa'/><t font='PuristaBold'> Land", ([[4], [4, 81]] select AIO_useNumpadKeys), "", -5, [["expression", "[groupSelectedUnits player] call AIO_fnc_HeliType"]], "1", "NotEmptyInVehicle * CursorOnGround"],
26-
[parseText"<img color='#2da7ff' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\heli_ca.paa'/><t font='PuristaBold'> Flight Height", ([[5], [5, 75]] select AIO_useNumpadKeys), "#USER:AIO_flightHeight_subMenu", -5, [["expression", ""]], "1", "NotEmptyInVehicle"],
24+
[parseText"<img color='#8c5826' image='\A3\ui_f\data\IGUI\RscIngameUI\RscUnitInfo\role_driver_ca.paa'/><t font='PuristaBold'> Create Driver", ([[3], [3, 80]] select _useNumpad), "", -5, [["expression", "[(groupSelectedUnits player)] spawn AIO_fnc_createDriver"]], "1", _inVeh],
25+
[parseText"<img color='#FFFF00' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\land_ca.paa'/><t font='PuristaBold'> Land", ([[4], [4, 81]] select _useNumpad), "", -5, [["expression", "[groupSelectedUnits player] call AIO_fnc_HeliType"]], "1", "NotEmptyInVehicle * CursorOnGround"],
26+
[parseText"<img color='#2da7ff' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\heli_ca.paa'/><t font='PuristaBold'> Flight Height", ([[5], [5, 75]] select _useNumpad), "#USER:AIO_flightHeight_subMenu", -5, [["expression", ""]], "1", "NotEmptyInVehicle"],
2727
["", [], "", -1, [["expression", ""]], "1", "0"],
28-
[parseText"<img color='#626262' image='\A3\ui_f\data\GUI\Cfg\RespawnRoles\support_ca.paa'/><t font='PuristaBold'> Resupply", ([[6], [6, 76]] select AIO_useNumpadKeys), "#USER:AIO_resupply_subMenu", -5, [["expression", ""]], "1", "NotEmptyInVehicle"],
29-
[parseText"<img color='#f94a4a' image='\A3\ui_f\data\IGUI\RscIngameUI\RscUnitInfoAirRTDFull\ico_cpt_park_ON_ca.paa'/><t font='PuristaBold'> Vehicle Controls", ([[7], [7, 77]] select AIO_useNumpadKeys), "#USER:AIO_vehicleCtrl_subMenu", -5, [["expression", ""]], "1", "NotEmptyInVehicle"],
30-
[parseText"<img image='\A3\ui_f\data\IGUI\Cfg\VehicleToggles\LandingGearIconOn_ca.paa'/><t font='PuristaBold'> Taxi Aircraft", ([[8], [8, 71]] select AIO_useNumpadKeys), "#USER:AIO_Taxi_subMenu", -5, [["expression", ""]], "1", "NotEmptyInVehicle"],
28+
[parseText"<img color='#626262' image='\A3\ui_f\data\GUI\Cfg\RespawnRoles\support_ca.paa'/><t font='PuristaBold'> Resupply", ([[6], [6, 76]] select _useNumpad), "#USER:AIO_resupply_subMenu", -5, [["expression", ""]], "1", "NotEmptyInVehicle"],
29+
[parseText"<img color='#f94a4a' image='\A3\ui_f\data\IGUI\RscIngameUI\RscUnitInfoAirRTDFull\ico_cpt_park_ON_ca.paa'/><t font='PuristaBold'> Vehicle Controls", ([[7], [7, 77]] select _useNumpad), "#USER:AIO_vehicleCtrl_subMenu", -5, [["expression", ""]], "1", "NotEmptyInVehicle"],
30+
[parseText"<img image='\A3\ui_f\data\IGUI\Cfg\VehicleToggles\LandingGearIconOn_ca.paa'/><t font='PuristaBold'> Taxi Aircraft", ([[8], [8, 71]] select _useNumpad), "#USER:AIO_Taxi_subMenu", -5, [["expression", ""]], "1", "NotEmptyInVehicle"],
3131
["", [], "", -1, [["expression", ""]], "1", "0"],
32-
[parseText"<img image='\A3\ui_f\data\IGUI\Cfg\Actions\eject_ca.paa'/><t font='PuristaBold'> EJECT (parachute if Air)", ([[9], [9, 72]] select AIO_useNumpadKeys), "", -5, [["expression", "[(groupSelectedUnits player)] call AIO_fnc_eject"]], "1", "NotEmptyInVehicle"]
32+
[parseText"<img image='\A3\ui_f\data\IGUI\Cfg\Actions\eject_ca.paa'/><t font='PuristaBold'> EJECT (parachute if Air)", ([[9], [9, 72]] select _useNumpad), "", -5, [["expression", "[(groupSelectedUnits player)] call AIO_fnc_eject"]], "1", "NotEmptyInVehicle"]
3333
];
3434

3535
//-----------------------------------------------------------------------------------------------------------------------------
3636

37-
if (player != hcLeader group player) then {player hcSetGroup [group player]};
38-
39-
if (player == hcLeader group player) then {
40-
AIO_MENU_GroupCommunication =
41-
[
42-
["All-In-One Command Menu",true],
43-
[parseText"<img color='#a532c9' image='\A3\ui_f\data\IGUI\Cfg\Actions\eject_ca.paa'/><t font='PuristaBold'> Disembark Non-Essential", [], "", -5, [["expression", "[(groupSelectedUnits player)] call AIO_fnc_disembarkNonEssential"]], "NotEmptyInVehicle", "1"],
44-
[parseText"<img color='#95ff44' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\meet_ca.paa'/><t font='PuristaBold'> Infantry Commands", ([[2], [2, 79]] select AIO_useNumpadKeys), "#USER:AIO_infantry_subMenu", -5, [["expression", ""]], "1", "1"],
45-
[parseText"<img color='#ffff00' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\navigate_ca.paa'/><t font='PuristaBold'> WayPoints", ([[3], [3, 80]] select AIO_useNumpadKeys), "", -5, [["expression", "call AIO_fnc_startWaypointUI"]], "1", "1"],
46-
[parseText"<img color='#ffa43d' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\heli_ca.paa'/><t font='PuristaBold'> Vehicle Commands", ([[4], [4, 81]] select AIO_useNumpadKeys), "#USER:AIO_vehicle_subMenu", -5, [["expression", ""]], "1", "1"],
47-
[parseText"<img color='#8c3825' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\rifle_ca.paa'/><t font='PuristaBold'> Manage Equipment", ([[5], [5, 75]] select AIO_useNumpadKeys), "#USER:AIO_weaponAcessories_subMenu", -5, [["expression", ""]], "1", "1"],
48-
["", [], "", -1, [["expression", ""]], "1", "0"],
49-
[parseText"<img color='#ffd6df' image='\A3\ui_f\data\IGUI\Cfg\Actions\take_ca.paa'/><t font='PuristaBold'> Actions", ([[6], [6, 76]] select AIO_useNumpadKeys), "#USER:AIO_action_subMenu", -5, [["expression", ""]], "1", "1"],
50-
["", [], "", -1, [["expression", ""]], "1", "0"],
51-
[parseText"<img color='#f94a4a' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\takeoff_ca.paa'/><t font='PuristaBold'> Unstick Unit", ([[7], [7, 77]] select AIO_useNumpadKeys), "", -5, [["expression", "[(groupSelectedUnits player)] spawn AIO_fnc_unstickUnit "]], "1", "1"],
52-
["", [], "", -1, [["expression", ""]], "1", "0"],
53-
[parseText"<img image='\A3\ui_f\data\IGUI\Cfg\Actions\Obsolete\ui_action_teamswitch_ca.paa'/><t font='PuristaBold'> Make Units Playable", ([[8], [8, 71]] select AIO_useNumpadKeys), "", -5, [["expression", "{addSwitchableUnit _x} foreach (units group player)-[player]"]], "1", "1"],
54-
[parseText"<img image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\documents_ca.paa'/><t font='PuristaBold'> Cheats", ([[9], [9, 72]] select AIO_useNumpadKeys), "", -5, [["expression", "[groupSelectedUnits player] spawn AIO_fnc_createCheatsMenu"]], "1", "1"],
55-
[parseText"<img color='#5c3fd9' image='AIO_AIMENU\pictures\zeus.paa'/><t font='PuristaBold'> Add/Refresh Zeus", ([[10], [10, 73]] select AIO_useNumpadKeys), "", -5, [["expression", "[0] call AIO_fnc_zeus"]], AIO_Zeus_Enabled_STR, "1"]
56-
];
57-
} else {
58-
AIO_MENU_GroupCommunication =
59-
[
60-
["All-In-One Command Menu",true],
61-
[parseText"<img color='#a532c9' image='\A3\ui_f\data\IGUI\Cfg\Actions\eject_ca.paa'/><t font='PuristaBold'> Disembark Non-Essential", [], "", -5, [["expression", "[(groupSelectedUnits player)] call AIO_fnc_disembarkNonEssential"]], "", "1"],
62-
[parseText"<img color='#95ff44' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\meet_ca.paa'/><t font='PuristaBold'> Infantry Commands", ([[2], [2, 79]] select AIO_useNumpadKeys), "#USER:AIO_infantry_subMenu", -5, [["expression", ""]], "1", "1"],
63-
[parseText"<img color='#ffff00' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\navigate_ca.paa'/><t font='PuristaBold'> WayPoints", ([[3], [3, 80]] select AIO_useNumpadKeys), "", -5, [["expression", "call AIO_fnc_startWaypointUI"]], "1", "1"],
64-
[parseText"<img color='#ffa43d' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\heli_ca.paa'/><t font='PuristaBold'> Vehicle Commands", ([[4], [4, 81]] select AIO_useNumpadKeys), "#USER:AIO_vehicle_subMenu", -5, [["expression", ""]], "1", "1"],
65-
[parseText"<img color='#8c3825' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\rifle_ca.paa'/><t font='PuristaBold'> Manage Equipment", ([[5], [5, 75]] select AIO_useNumpadKeys), "#USER:AIO_weaponAcessories_subMenu", -5, [["expression", ""]], "1", "1"],
66-
["", [], "", -1, [["expression", ""]], "1", "0"],
67-
[parseText"<img color='#ffd6df' image='\A3\ui_f\data\IGUI\Cfg\Actions\take_ca.paa'/><t font='PuristaBold'> Actions", ([[6], [6, 76]] select AIO_useNumpadKeys), "#USER:AIO_action_subMenu", -5, [["expression", ""]], "1", "1"],
68-
["", [], "", -1, [["expression", ""]], "1", "0"],
69-
[parseText"<img color='#f94a4a' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\takeoff_ca.paa'/><t font='PuristaBold'> Unstick Unit", ([[7], [7, 77]] select AIO_useNumpadKeys), "", -5, [["expression", "[(groupSelectedUnits player)] spawn AIO_fnc_unstickUnit "]], "1", "1"],
70-
["", [], "", -1, [["expression", ""]], "1", "0"],
71-
[parseText"<img image='\A3\ui_f\data\IGUI\Cfg\CrewAimIndicator\commander_ca.paa'/><t font='PuristaBold'> HC Menu", ([[8], [8, 71]] select AIO_useNumpadKeys), "", -5, [["expression", "[] spawn AIO_fnc_Menu_HC"]], "1", "1"],
72-
[parseText"<img image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\documents_ca.paa'/><t font='PuristaBold'> Cheats", ([[9], [9, 72]] select AIO_useNumpadKeys), "", -5, [["expression", "[groupSelectedUnits player] spawn AIO_fnc_createCheatsMenu"]], "1", "1"],
73-
[parseText"<img color='#5c3fd9' image='AIO_AIMENU\pictures\zeus.paa'/><t font='PuristaBold'> Add/Refresh Zeus", ([[10], [10, 73]] select AIO_useNumpadKeys), "", -5, [["expression", "[0] call AIO_fnc_zeus"]], AIO_Zeus_Enabled_STR, "1"]
74-
];
37+
_group = group player;
38+
if (player != hcLeader _group) then {
39+
(hcLeader _group) hcRemoveGroup _group;
40+
player hcSetGroup [_group];
7541
};
42+
43+
44+
AIO_MENU_GroupCommunication =
45+
[
46+
["All-In-One Command Menu",true],
47+
[parseText"<img color='#a532c9' image='\A3\ui_f\data\IGUI\Cfg\Actions\eject_ca.paa'/><t font='PuristaBold'> Disembark Non-Essential", [], "", -5, [["expression", "[(groupSelectedUnits player)] call AIO_fnc_disembarkNonEssential"]], "NotEmptyInVehicle", "1"],
48+
[parseText"<img color='#95ff44' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\meet_ca.paa'/><t font='PuristaBold'> Infantry Commands", ([[2], [2, 79]] select _useNumpad), "#USER:AIO_infantry_subMenu", -5, [["expression", ""]], "1", "1"],
49+
[parseText"<img color='#ffff00' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\navigate_ca.paa'/><t font='PuristaBold'> WayPoints", ([[3], [3, 80]] select _useNumpad), "", -5, [["expression", "call AIO_fnc_startWaypointUI"]], "1", "1"],
50+
[parseText"<img color='#ffa43d' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\heli_ca.paa'/><t font='PuristaBold'> Vehicle Commands", ([[4], [4, 81]] select _useNumpad), "#USER:AIO_vehicle_subMenu", -5, [["expression", ""]], "1", "1"],
51+
[parseText"<img color='#8c3825' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\rifle_ca.paa'/><t font='PuristaBold'> Manage Equipment", ([[5], [5, 75]] select _useNumpad), "#USER:AIO_weaponAcessories_subMenu", -5, [["expression", ""]], "1", "1"],
52+
["", [], "", -1, [["expression", ""]], "1", "0"],
53+
[parseText"<img color='#ffd6df' image='\A3\ui_f\data\IGUI\Cfg\Actions\take_ca.paa'/><t font='PuristaBold'> Actions", ([[6], [6, 76]] select _useNumpad), "#USER:AIO_action_subMenu", -5, [["expression", ""]], "1", "1"],
54+
["", [], "", -1, [["expression", ""]], "1", "0"],
55+
[parseText"<img color='#f94a4a' image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\takeoff_ca.paa'/><t font='PuristaBold'> Unstick Unit", ([[7], [7, 77]] select _useNumpad), "", -5, [["expression", "[(groupSelectedUnits player)] spawn AIO_fnc_unstickUnit "]], "1", "1"],
56+
["", [], "", -1, [["expression", ""]], "1", "0"],
57+
[parseText"<img image='AIO_AIMENU\pictures\advance1.paa'/><t font='PuristaBold'> Commanding Menus", ([[8], [8, 71]] select _useNumpad), "#USER:AIO_command_subMenus", -5, [["expression", ""]], "1", "1"],
58+
[parseText"<img image='\A3\ui_f\data\IGUI\Cfg\simpleTasks\types\documents_ca.paa'/><t font='PuristaBold'> Cheats", ([[9], [9, 72]] select _useNumpad), "", -5, [["expression", "[groupSelectedUnits player] spawn AIO_fnc_createCheatsMenu"]], "1", "1"],
59+
[parseText"<img color='#5c3fd9' image='AIO_AIMENU\pictures\zeus.paa'/><t font='PuristaBold'> Add/Refresh Zeus", ([[10], [10, 73]] select _useNumpad), "", -5, [["expression", "[0] call AIO_fnc_zeus"]], AIO_Zeus_Enabled_STR, "1"]
60+
];
61+
7662
//-----------------------------------------------------------------------------------------------------------------------------------
7763

7864
if (AIO_driver_mode_enabled) then {

0 commit comments

Comments
 (0)