hey, i already tried to use your method. I decrease the size of my final object and it runs successfully however the object seems can't be positioned even after i use "position object". Is this a problem with my .x files then?
sync on
make object cube 1,10
position object 1,0,5,0
dist=30
height=15
smooth=10
load object "test1.x",2
do
gosub control
position object 1,x#,y#,z#
set camera to follow x#,y#,z#,ang#,dist,height,smooth,0
sync
loop
control:
if leftkey()=1
dec ang#,1
ENDIF
if rightkey()=1
inc ang#,1
ENDIF
if upkey()=1
move object 1,1
ENDIF
if downkey()=1
move object 1,-1
ENDIF
x#=object position x(1)
y#=object position y(1)
z#=object position z(1)
yrotate object 1,ang#
return
and i already put my final object in this rar folder
i'm a newbie...