Hi, why is it, everytime I copy and paste a camera script I've previously used before and has worked perfectly fine then.
Then when I copy and paste it into a new mission and just change the target names, it never works!
Arrgggh..
Here is the script.
titlecut ["","black in",1]
_cam = "camera" camCreate [0,0,0]
_cam cameraeffect ["Internal", "back"]
;Wait a moment.
~5
;Play Dialogue.
PlayMusic "Scene1"
; point the camera at the player, and place it 2m to the players left,
; 10m to his front and 3m above the ground
_cam camsettarget player
_cam camsetrelpos [1,-10,3]
_cam camcommit 0
~200
; end cutscene
_cam cameraeffect ["terminate", "back"]
camdestroy _cam
; fade back in over 2 seconds
titlecut [" ","BLACK IN",2]
exit
Seems fine, but the view is of the ocean throughout the whole script. How do I make it start at the player?
Or any target for that matter.....
Thanks..