hailfire_aa.sqf 573 B

1234567891011121314151617181920212223
  1. /*#include "../../config_macros.hpp"
  2. //////////////////////////////////////////////////////////////////
  3. // Hailfire AntiAir Script
  4. // Author: CX-P Zatama
  5. //edited by namenai
  6. //////////////////////////////////////////////////////////////////
  7. params[
  8. ["_vic",objNull ,[player]]
  9. ];
  10. if(isNull _vic) exitWith {
  11. };
  12. //if not the server,exit
  13. if (!isServer) exitWith {};
  14. _Main_Gun = macro_quote(macro_new_vehicle(Spartan_Variants,CIS_Overlord)) createVehicle (getPosASL _vic);
  15. _Main_Gun attachTo [_vic,[0,3,4]];
  16. createVehicleCrew _Main_Gun;
  17. _Main_Gun hideObjectGlobal true;