lets see
does this snippet of code
rem set collision
set object collision on 1
set object collision on 2
set object collision on 3
set object collision on 4
set object collision on 5
set object collision on 6
set object collision on 7
rem set object 1 position and speed
x#=1000
z#=1000
a#=90
sp=3
REM MAIN LOOP 1 PLAYER TOUNAMENT
DO
rem Control camera with arrow keys
if upkey()=1 then x#=newxvalue(x#,a#,sp-75) : z#=newzvalue(z#,a#,sp-75) :set sound volume 1,95 :sp=sp+1
if downkey()=1 then x#=newxvalue(x#,a#,-8) : z#=newzvalue(z#,a#,-8) :set sound volume 2,75
if leftkey()=1 then a#=wrapvalue(a#-1.0)
if rightkey()=1 then a#=wrapvalue(a#+1.0)
if upkey()=0 then set sound volume 1,0 :sp=sp-3
if downkey()=0 then set sound volume 2,0
if upkey() and downkey()=1 then set sound volume 2,0
rem Update character
y#=get ground height(1,x#,z#)-20.0
position object 1,x#,-5,z#
yrotate object 1,a#
rem Position camera to the back of the character
cx#=newxvalue(x#,wrapvalue(a#+180),300)
cz#=newzvalue(z#,wrapvalue(a#+180),300)
cy#=get ground height(1,cx#,cz#)+50.0
position camera 1,cx#,cy#,cz#
rem Point camera at object
point camera 1,x#,y#,z#
rem Syncronise
rem increase speed
if sp>100 then sp=100
if sp<2 then sp=2
rem Collision check
If Object collision(1,0)>0 then position object 1,terugvalx#,0,terugvalZ#
terugvalx# = Object position x(2)
terugvalZ# = Object position z(2)
endif
sync
rem End loop
loop
stop object 1 when it collides with another object.
does the collision work in it
i need help
please help!!!!