i dont know how to use this command .... i tried it but can't
..... plz edit the point camera command for me
sync on
sync rate 30
hide mouse
for x = 1 to 10
make object cube x,100
position object x,rnd(2000),0,rnd(2000)
next x
load object "c:\cube.x",1
do
if rightkey()=1
y=wrapvalue(y+5)
angley#=wrapvalue(angley#+10.0)
xrotate camera 0
yrotate camera angley#
zrotate camera 0
point camera angle#,angle#,0
endif
if leftkey()=1
y=wrapvalue(y-5)
angley#=wrapvalue(angley#-10.0)
xrotate camera 0.0
yrotate camera angley#
zrotate camera 0.0
point camera angle#,angle#,0
endif
if upkey()=1
move camera 10.0
move object 1,10
endif
if downkey()=1
move object 1,-10
move camera -10.0
endif
yrotate object 1,y
sync
loop