Well, I got it...kind of, now the screen shakes.
load object "media\models\static\h\HELICO11.x",1
rotate object 1,0,180,0
x = object position x(1) - 20
y = object position y(1) - 20
z = object position z(1) - 20
make matrix 1,1000,1000,25,25
sync on
draw to front
rotate camera 0,180,0
set camera range 1,1000
Set camera to follow x,y,z,0,15,10,10,0
position camera -20,10,0
do
x = object position x(1) - 20
y = object position y(1) - 20
z = object position z(1) - 20
Set camera to follow x,y,z,0,15,10,10,0
if downkey() = 1 then move object 1,1
if upkey()=1 then move object 1,-1
if leftkey()=1 then turn object left 1,2
if rightkey()=1 then turn object right 1,2
sync
loop