Here is a script for a HALO drop. That means that you fall for 95% of the drop, and the parachute opens really low. Great for Black Ops.
To init it:
[Parachutist, helicopter/plane to jump out of, a game logic exactly where you want them to drop (give or take 50m)] exec "halo.sqs"
example:
[aP,chopper1,markerdrop] exec "halo.sqs"
; ***************************************
; Operation Flashpoint Script
; ***************************************
; halo.sqs
; ***************************************
_man = _this select 0
_heli = _this select 1
_marker = _this select 2
_man moveincargo _heli
_markerpos = getpos _marker
_markerpos = [_markerpos select 0, _markerpos select 1, 2000]
_heli setpos _markerpos
_heli flyinheight 2000
_man setbehaviour "SAFE"
; changeable text, change part in brackets
_heli SideChat "Alpha prepare for drop. Over."
~9.5
_heli SideChat "Here we go. Three..."
~1.5
_heli SideChat "Two..."
~1.5
_heli SideChat "One..."
~1.5
_heli SideChat "Drop!"
~0.75
;halo drop part
_man setpos getpos _heli
;drop part
~24
;drop part
aP sidechat "die"
setacctime 0.001
_heli setpos getpos _man
_man moveincargo _heli
_man action ["eject", _heli]
_heli setpos [0,0,0]
deletevehicle _heli
setacctime 1
exit
There you go. Happy Dropping!
casual1y