How about some Camera Control code? Here man... I created this...
function createCam(cameraNum, camX, camY, camZ, camAspectX, camAspectY, camAspectZ)
set current camera cameraNum
position camera cameraNum, camX, camY, camZ
point camera cameraNum, camAspectX, camAspectY, camAspectZ
endfunction
This function would primarily save you loads of headaches later on when you realise you want cutscene capability, or in fact some kind of press "F2 Button to look out the 'left window'" kind of capability that makes flight sims so cool. anyway, to use this function you would need something like this within your main loop:
//this just designates our camera number
MAINCAM = 1
make camera MAINCAM
createCam(MAINCAM, 0,0,0, 0,0,1000)`Camera Number,Position(x,y,z), Aspect(x,y,z)note:BEFORE THIS FUNC IS MADE, LINE BEFORE SHOULD SAY 'make camera XXX'