aat_coxial_r.sqf 368 B

12345678910111213
  1. //Script to remove Ewebs from spawned AATs
  2. {
  3. if ((typeOf _x) in ["O_SWOP_AAT_1"]) then {
  4. _x removeWeaponTurret ["Cannon_EWEBSWBFgun", [0]];
  5. for [{_i=0}, {_i<3}, {_i=_i+1}] do
  6. {
  7. _x removeMagazineTurret ["1000Rnd_Laser_Cannon_EWEBSWBF" ,[0]];
  8. };
  9. };
  10. } forEach vehicles;
  11. hintSilent "Existing AATs have had Coaxial turret removed";