Jump to content
Sign in to follow this  
desxeon

Helicopter Paradrop

Recommended Posts

Hello,

I'm new to the BI forums.

My question is, is it possible to paradrop out of a helicopter with the ejection.sqf "_group = _this select 0;

{_X action ["Eject"]; unAssignVehicle _X; sleep 1}foreach units _group"

I've tried it a couple of times and it doesn't work.

With the C-130 and Il-76 it works, so I dont get it why it don't work with a helicopter like the Mi-8/17.

Share this post


Link to post
Share on other sites

i use this script for a helo paradrop from the mi24v..

//////////////////////////////////////////////////////////
// Function file for ArmA2: Operation Arrowhead
// Created by: kylania
//
// nul = [groupName] execVM "groupEject.sqf";
//
// Converted to ArmA2:OA from eject1.sqs by Matt Rochelle
// http://forums.bistudio.com/showthread.php?t=74043
//////////////////////////////////////////////////////////

if (isServer) then
{
_grp = _this select 0;

sleep (random 3);

{
	unassignVehicle (_x);
	(_x) action ["EJECT", vehicle _x];
	sleep 0.4;
} foreach units _grp;
};

Share this post


Link to post
Share on other sites

Using the action "Eject" will boot them out of the aircraft then automatically initiate the static round chute. If static chutes is what your looking for then "Eject" works. For HALO (which I don't think your looking for) use "GetOut". As Nimrod pointed out, unassign the vehicle, then kick them out, not the other way around.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×