OFPEC Forum

Editors Depot - Mission Editing and Scripting => ArmA - Editing/Scripting General => Topic started by: Carroll on 06 Oct 2008, 13:13:12

Title: [solved] UH60 2nd Gunner Position
Post by: Carroll on 06 Oct 2008, 13:13:12
Hi i've been doing searches on the forums here for a way to moveInGunner 2 units to an empty Blackhawk, but couldn't find anything....i ask if anyone knows how to fill the 2nd gunner position of a UH60?

thanks in advance
Title: Re: UH60 2nd Gunner Position
Post by: Wolfrug on 06 Oct 2008, 14:27:56
I believe this code should work:

Code: [Select]
soldier1 moveinturret [blackhawk1, [1]]
The salient command here is moveinturret, which allows you to specify a vehicle and an array (which points at the turret you want the soldier moved in). Since the blackhawk only has two turrets ([0] and [1]), [1] should be the "crew chief" position :)

Wolfrug out.
Title: Re: UH60 2nd Gunner Position
Post by: Carroll on 06 Oct 2008, 14:32:51
Thanks Wolfrug, i'll give it a go!