Hi Guys,
Missions starts with a cutscene. Helos arrive at the scene, land and embark troops. Just when the first one gets of the helo I want my camera script to end and make the game return to normal gameplay. lb1 is the helo. Players Name is df1.
Here's my camera script so far.
Any help welcome.
Jens
=================================
EnableRadio false
titleCut["Bakara Market - Mogadischu 10/03/1993","BLACK IN",8]
;setAccTime 0.2
_s1 = getMarkerPos "Kamera"
_start1 = [_s1 select 0,_s1 select 1, 1.8]
_s2 = getMarkerPos "Kamera2"
_start2 = [_s2 select 0,_s2 select 1, 0]
;//////////////////////////////////////////////////////////
_camera = "Camera" camCreate [0,0,0]
_camera CameraEffect ["Internal","Back"]
_camera camSetTarget lb1
_camera camSetPos _start1
_camera camSetFOV 0.700
_camera camCommit 0
;@camCommitted _camera
camDestroy _camera
exit
;//////////////////////////////////////////////////////////