Here's one of the simplest ways of doing it
i was unsure on if you got dbpro or dbc. So here you got both versions
You control the player on the arrow keys. Then the other box will follow you. :
dbpro version:
sync on
sync rate 60
hide mouse
make object box 1,5,5,5
make object box 2,5,5,5
position object 1,0,0,0
position object 2,0,0,-50
position camera 0,0,50,0
do
point camera 0,object position x(1), object position y(1), object position z(1)
point object 2,object position x(1), object position y(1), object position z(1)
move object 2,1
if keystate(200)=1
move object 1,2
endif
if keystate(208)=1
move object 1,-2
endif
if keystate(203)=1
turn object left 1,2
endif
if keystate(205)=1
turn object right 1,2
endif
sync
loop
dbc version:
sync on
sync rate 60
hide mouse
make object box 1,5,5,5
make object box 2,5,5,5
position object 1,0,0,0
position object 2,0,0,-50
position camera 0,50,0
do
point camera object position x(1), object position y(1), object position z(1)
point object 2,object position x(1), object position y(1), object position z(1)
move object 2,1
if keystate(200)=1
move object 1,2
endif
if keystate(208)=1
move object 1,-2
endif
if keystate(203)=1
turn object left 1,2
endif
if keystate(205)=1
turn object right 1,2
endif
sync
loop
-The Nerd
PanzerGames
here
Free Particle Engine For dbpro :
here