Apaches

dajax

New Member
Okay, So I am running into a problem.


On my epoch server we are going to make it militarized.

When I add in the Apaches the Hydras are in the gunners seat.

Is that normal?

All other servers have Hydras in Pilot
and m230 and Hellfires for gunners.

Is there something going on somewhere in the code that could be causing this?


I have tried this...

Code:
if (_object isKindof "AH64D") then {
         _object magazinesTurret [0];
         _object removeMagazinesTurret ["38Rnd_FFAR",[0]];
         _object WeaponsTurret [0];
         _object removeWeapon "FFARLauncher"];
        
        
    };

To try and remove the Hydras from the Gunner, but it just seems to do nothing.

Can someone help me figure this out?
I am just trying to get the hydras in the Pilots seat and not the gunner.
 
Do you know of any way to specify which seat it is going to end up in if I readd it?

Cause I would love to just readd it to the pilot
 
I have no idea dude, But i would recomend adding
AH-1Z instead of AH-64D Apache. It would solve your problem with hydras in gunner seat
 
I am currently testing this

Code:
    if (_object isKindof "AH64D") then {
       
         _object removeWeapon "FFARLauncher";
         _object removeMagazine "38Rnd_FFAR";
       
         _object addWeapon "FFARLauncher_14";
         _object addMagazineTurret ["14Rnd_FFAR",[-1]];
       
    };


addMagazineTurrent seems to be able to direct who has control over the launcher, I am testing with a different launcher just to see if that matters.


EDIT: NOPE
 
Last edited:
Back
Top