hello nameless,
i think your problem is with positioning the object..if you look at this code at the bottom you will see that it says that for this demo we will leave the room positioned at 0,0,0....i believe if you changed this position and played around with the x position you will find the right spot...since i do not know the size of the model it would be hard for me to tell you where to put it...
load object "..mediafpsbuggylevel.dbo", obj
`Step 2- make the TreeCollision data from the object, and save into variable "Col"
Col = NDB_NewtonCreateTreeCollision( obj )
`Step 3- make the rigid body from the collision data
Room = NDB_NewtonCreateBody( Col )
`next you would position the object + rigid body, but we're leaving them at 0,0,0 for this demo.
position it with negative numbers to move it left or positive to move it right...similar to this....
position object obj, object position x(-1000), object position y(0), object position z(0)
it also says to position the rigid body..i do not know how to do this because i have never used newton...
i'm not sure this is your problem but i hope it helps...pirate
thanks, pirate