Skip to content

Commit

Permalink
tanker kit adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
ante185 committed Mar 10, 2024
1 parent f22cbe4 commit bf4ec09
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
9 changes: 5 additions & 4 deletions A3A/addons/core/Templates/Templates/IFA/IFA_AI_UK.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ _crewLoadoutData set ["uniforms", ["U_LIB_UK_P37_Sergeant", "U_LIB_UK_P37"]];
_crewLoadoutData set ["vests", ["V_LIB_UK_P37_Crew"]];
_crewLoadoutData set ["helmets", ["H_LIB_UK_Beret_Tankist", "H_LIB_UK_Beret_Headset"]];

_crewLoadoutData set ["sidearms", ["LIB_Webley_mk6"]];
_crewLoadoutData set ["sidearms", ["LIB_Colt_M1911", "LIB_Webley_mk6", "LIB_Webley_mk6"]];

private _pilotLoadoutData = _militaryLoadoutData call _fnc_copyLoadoutData;
_pilotLoadoutData set ["uniforms", ["U_LIB_US_Pilot", "U_LIB_US_Pilot_2"]];
Expand Down Expand Up @@ -589,11 +589,12 @@ private _crewTemplate = {
if(random 10 > 5) then
{
[selectRandom ["SMGs", "carbines"]] call _fnc_setPrimary;
["primary", 2] call _fnc_addMagazines;
["primary", 3] call _fnc_addMagazines;
} else {
["sidearms"] call _fnc_setHandgun;
["handgun", 4] call _fnc_addMagazines;
};

["sidearms"] call _fnc_setHandgun;
["handgun", 4] call _fnc_addMagazines;

["items_medical_basic"] call _fnc_addItemSet;
["items_crew_extras"] call _fnc_addItemSet;
Expand Down
5 changes: 4 additions & 1 deletion A3A/addons/core/Templates/Templates/IFA/IFA_AI_US.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,10 @@ private _crewTemplate = {
if(random 10 > 5) then
{
[selectRandom ["SMGs", "carbines"]] call _fnc_setPrimary;
["primary", 2] call _fnc_addMagazines;
["primary", 3] call _fnc_addMagazines;
} else {
["sidearms"] call _fnc_setHandgun;
["handgun", 4] call _fnc_addMagazines;
};

["sidearms"] call _fnc_setHandgun;
Expand Down

0 comments on commit bf4ec09

Please sign in to comment.