I'm having a little problem with the cutscene script here:
; ****************************************************************
; Script file for Armed Assault
; Created by: TODO: Author Name
; ****************************************************************
_camera = "camera" camCreate [7682.46,5350.85,2.00]
_camera cameraEffect ["internal","back"]
0 fadesound 0
showcinemaBorder false
titlecut ["","BLACK FADED",2]
~2
titlecut ["Rytuklis presents..","BLACK FADED",2]
~2
titleCut ["Rytuklis presents..","BLACK OUT",3]
3 fadesound 0.5
_start = _time
#camloop
_camera camsettarget car1
_camera camsetRelpos [-2, 3, 2]
_camera camcommit 0
? !(_time >= (_start + 9)) : goto "camloop"
~4
_start = _time
#camloop1
_camera camsettarget car1
_camera camsetRelpos [3, -2, 2]
_camera camcommit 0
~0.01
? !(_time >= (_start + 9)) : goto "camloop1"
What happens is that at the start, instead of showing the black screen for the specified time, it starts immediatly FADING OUT at mission start, regardless if i use "BLACK IN" or "BLACK OUT'. Help?