Skip to content

Commit

Permalink
Removed AT missiles from Strykers (#1124)
Browse files Browse the repository at this point in the history
  • Loading branch information
pool011 authored Jan 26, 2024
2 parents 8326fe1 + 8021013 commit afa012b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 28 deletions.
48 changes: 22 additions & 26 deletions cScripts/functions/vehicle/fn_vehicle_getPylon.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -118,49 +118,45 @@ private _rhsusf_m1a1tank_base = createHashMapFromArray [

// I_APC_Wheeled_03_cannon_F
private _I_APC_Wheeled_03_cannon_F = createHashMapFromArray [
["antiarmor", [
["SmokeLauncherMag",[0,0],6],
["140Rnd_30mm_MP_shells_Tracer_Red",[0],140],
["60Rnd_30mm_APFSDS_shells_Tracer_Red",[0],60],
["60Rnd_30mm_APFSDS_shells_Tracer_Red",[0],60],
["2000Rnd_762x51_Belt_T_Red",[0],2000],
["2000Rnd_762x51_Belt_T_Red",[0],2000],
["2Rnd_GAT_missiles",[0],2],
["2Rnd_GAT_missiles",[0],2],
["2Rnd_GAT_missiles",[0],2]
]],
// ["antiarmor", [
// ["SmokeLauncherMag",[0,0],6],
// ["2000Rnd_762x51_Belt_T_Red",[0],2000],
// ["2000Rnd_762x51_Belt_T_Red",[0],2000],
// ["140Rnd_30mm_MP_shells_Tracer_Red",[0],140],
// ["60Rnd_30mm_APFSDS_shells_Tracer_Red",[0],60],
// ["60Rnd_30mm_APFSDS_shells_Tracer_Red",[0],60],
// ["60Rnd_30mm_APFSDS_shells_Tracer_Red",[0],60],

// ]],
[ "antiair", [
["SmokeLauncherMag",[0,0],6],
["2000Rnd_762x51_Belt_T_Red",[0],2000],
["2000Rnd_762x51_Belt_T_Red",[0],2000],
["60Rnd_30mm_APFSDS_shells_Tracer_Red",[0],60],
["140Rnd_30mm_MP_shells_Tracer_Red",[0],140],
["140Rnd_30mm_MP_shells_Tracer_Red",[0],140],
["4Rnd_Titan_long_missiles",[0],4],
["60Rnd_30mm_APFSDS_shells_Tracer_Red",[0],60],
["4Rnd_Titan_long_missiles",[0],4]
]],
["default",[
["SmokeLauncherMag",[0,0],6],
["2000Rnd_762x51_Belt_T_Red",[0],2000],
["2000Rnd_762x51_Belt_T_Red",[0],2000],
["140Rnd_30mm_MP_shells_Tracer_Red",[0],140],
["2Rnd_GAT_missiles",[0],2],
["2Rnd_GAT_missiles",[0],2],
["60Rnd_30mm_APFSDS_shells_Tracer_Red",[0],60],
["60Rnd_30mm_APFSDS_shells_Tracer_Red",[0],60]
]],
["assault",[
["SmokeLauncherMag",[0,0],6],
["140Rnd_30mm_MP_shells_Tracer_Red",[0],140],
["140Rnd_30mm_MP_shells_Tracer_Red",[0],140],
["2Rnd_GAT_missiles",[0],2],
["2000Rnd_762x51_Belt_T_Red",[0],2000],
["2000Rnd_762x51_Belt_T_Red",[0],2000],
["2000Rnd_762x51_Belt_T_Red",[0],2000],
["2000Rnd_762x51_Belt_T_Red",[0],2000],
["60Rnd_30mm_APFSDS_shells_Tracer_Red",[0],60],
["60Rnd_30mm_APFSDS_shells_Tracer_Red",[0],60],
["60Rnd_30mm_APFSDS_shells_Tracer_Red",[0],60],
["60Rnd_30mm_APFSDS_shells_Tracer_Red",[0],60]
]]
// ["assault",[
// ["SmokeLauncherMag",[0,0],6],
// ["2000Rnd_762x51_Belt_T_Red",[0],2000],
// ["2000Rnd_762x51_Belt_T_Red",[0],2000],
// ["140Rnd_30mm_MP_shells_Tracer_Red",[0],140],
// ["140Rnd_30mm_MP_shells_Tracer_Red",[0],140],
// ["60Rnd_30mm_APFSDS_shells_Tracer_Red",[0],60],
// ["60Rnd_30mm_APFSDS_shells_Tracer_Red",[0],60]
// ]]
];

// Loadout vehicle list
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ if (_vehicle iskindOf "rhsusf_m1a1tank_base") then {
if (_vehicle iskindOf "I_APC_Wheeled_03_cannon_F" && !(_vehicle isKindOf "cav_dragoon_unarmed_base_F")) then {
_pylonList = [
// TypeOf, DisplayName, Name, Icon
["I_APC_Wheeled_03_cannon_F", "Anti-Armor", "antiarmor", ""],
// ["I_APC_Wheeled_03_cannon_F", "Anti-Armor", "antiarmor", ""],
["I_APC_Wheeled_03_cannon_F", "Anti-Air", "antiair", ""],
["I_APC_Wheeled_03_cannon_F", "Assault", "assault", ""],
// ["I_APC_Wheeled_03_cannon_F", "Assault", "assault", ""],
["I_APC_Wheeled_03_cannon_F", "Default", "default", ""]
];
};
Expand Down

0 comments on commit afa012b

Please sign in to comment.