Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×
Sign in to follow this  
arthur666

quick question about vehicle crew position names

Recommended Posts

I searched a while and couldn't find it.

What do you call the extra door gunner(s) in the choppers, specifically the UH60 and CH47? I have a script like: driver heli1 removeweapon "SCAR_L_CQC" ; driver heli1 addweapon "M4A1" ; gunner heli1... etc. etc.

I know commander, gunner, and driver, but what about others?

Share this post


Link to post
Share on other sites

Probably Gunner, you'd move them in via moveInTurret I think, but not sure how to reference them with regards to changing their weapon like you want to.

Something like this would work though:

{removeAllWeapons _x;_x addMagazine "30Rnd_556x45_Stanag"; _x addWeapon "M4A3_CCO_EP1";} foreach crew this;

Share this post


Link to post
Share on other sites
Probably Gunner, you'd move them in via moveInTurret I think, but not sure how to reference them with regards to changing their weapon like you want to.

Something like this would work though:

{removeAllWeapons _x;_x addMagazine "30Rnd_556x45_Stanag"; _x addWeapon "M4A3_CCO_EP1";} foreach crew this;

Hey that's great. Thanks for the magic script.

I did this, and since they already had STANAG's, it worked great.

{_x removeweapon "SCAR_L_CQC" ;_x addWeapon "M4A1";} foreach crew this;

I'm pretty much removing the SCAR's from all but elite troops in my missions. In a real war, I wouldn't expect every grunt, support soldier, crewman and pilot to be carrying one.

Share this post


Link to post
Share on other sites
Sign in to follow this  

×