With the camera angle it just kept making the object dissapear So I just pitched and turned the object, could I zoom out upward from the pitch ? but Thanks Crazy DP you really helped me out. I was stuck on that for like 2 days now seriously. Now I coded it with thhe up and down keys but now lets say if I move down and then press left the object moves to the left side of the screen but does not stay in it's y position.
Also would scale object make thhe airship smaller ? I've been messin with it but don't know if thats the code I should be usin for it.
Here's the code
rem Load and Position Airship
LOAD OBJECT "basicship1.x",1
PITCH OBJECT UP 1,90
TURN OBJECT RIGHT 1,180
rem Control airship movement
DO
AirshipX=object position x(1)
AirshipY=object position y(1)
AirshipZ=object position z(1)
if leftkey()=1 then position object 1,X-1,Y,Z
if rightkey()=1 then position object 1,X+1,Y,Z
if upkey()=1 then position object 1,X,Y+1,Z
if downkey()=1 then position object 1,X,Y-1,Z
LOOP
"The Infamous J Nice"