desxeon 1 Posted February 3, 2013 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
nimrod_z 8 Posted February 3, 2013 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
Kempco 10 Posted February 3, 2013 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
desxeon 1 Posted February 4, 2013 I love you guys <3. Thanks, it's working for me now! Share this post Link to post Share on other sites