Ok here you go this is a working bit of code.
autocam off
sync on
`make object to move around
make object cube 1,10
position object 1,20,5,20
`make a matrix so you can see object moving
make matrix 1,5000,5000,50,50
do
`get keyboard input 30=a key, 44=z key, 24=o key, 25=p key
if scancode()=30 then move object 1,2
if scancode()=44 then move object 1,-2
if scancode()=24 then dec angle#,2
if scancode()=25 then inc angle#,2
`get object position to use with set camera to follow command
x#=object position x(1)
y#=object position y(1)
z#=object position z(1)
`rotate object to new angle
yrotate object 1,wrapvalue(angle#)
`positons camera
set camera to follow x#,y#,z#,angle#,35,10,10,0
sync
loop
Just copy this you should be able to figure out how to include it in your own program.
Rich
You might never win but if you give in will you ever know ??????