Jump to content

jjhhytt

Member
  • Content Count

    6
  • Joined

  • Last visited

  • Medals

Posts posted by jjhhytt


  1. I'm inquiring as to how to give the c130 gunships from USAF mod ammo because when I use the ac 130 mode from the CAS tab, I could loiter and connect to the camera/guns, but get zero ammo. A console error led me to the file: 

    mcc_sandbox_mod\mcc\dialogs\mcc_playerconsole3_init.sqf line 101. All i want to know is how to make ammo available for the ac130 mode under CAS tab and not the AC130 tab which spawns the blackfish...

    //AmmosetVehicleAmmo
    MCC_ConsoleACAmmo = [
    ["20mm",_uav ammo "gatling_20mm_VTOL_01","4000Rnd_20mm_Tracer_Red_shells","B_20mm_Tracer_Red"],
    ["40mm",((crew _uav) select 3) ammo "HE","240Rnd_40mm_GPR_Tracer_Red_shells","B_40mm_GPR_Tracer_Red"],
    ["105mm",_uav ammo "cannon_105mm_VTOL_01","100Rnd_105mm_HEAT_MP","Sh_105mm_HEAT_MP"]
    ];

    ctrlSetText [MCC_CONSOLE_AC_MISSILE_COUNT, ("20mm: " + str (_uav ammo "gatling_20mm_VTOL_01"))];
    ctrlSetText [MCC_CONSOLE_AC_MISSILE_COUNT2, ("40mm: " + str (((crew _uav) select 3) ammo "HE"))];
    ctrlSetText [MCC_CONSOLE_AC_MISSILE_COUNT3, ("105mm: " + str (_uav ammo "cannon_105mm_VTOL_01"))];

×