Linehan, you are in the wrong forum. This should be under the "Newcomers to DBPro Corner" forum.
To answer your question, you need to (in your main loop) get your ships position(s) and angle(s). If you don't know how you can do it like this:
x# = object position (shipObjectNumber)
y# = object position (shipObjectNumber)
z# = object position (shipObjectNumber)
xang# = object angle x (shipObjectNumber)
yang# = object angle y (shipObjectNumber)
zang# = object angle z (shipObjectNumber)
Then, to place your camera behind the ship:
Position camera x#,y#,z#
rotate camera xang#,yang#,zang#
move camera -10
The "move camera" is what moves it behind the object, the value may need to be changed depending on the scale of your objects.
So:
You position your camera at objects position
You rotate your camera to the objects rotation
You move the camera backwards 10 units.
Understand?
ßõw§€r¥¤