Here is a couple steps
Position object 1,0,0,0 // This will set your loaded object to position "0"
Now you can do liked JRH said, And position your camera. You can define the camera's position At the object's position. "x,y,z"
To get the camera moving around Do something like the following
// Globals for x,y,z
Global x = 0 // Side to Side
Global y = 0 // Up / Down
Global z = 0 // Forward / Back
// ^^ may got x/z mixed up for left right etc
To setup the movement you could add something like this.
do
if upkey()=1
x#=newxvalue(x#,a#,10.1)
z#=newzvalue(z#,a#,20.1)
endif
if downkey()=1
x#=newxvalue(x#,a#,-10.1)
z#=newzvalue(z#,a#,20.1)
endif
Sync
Loop
======================================
My software never has bugs. It just develops random features.