change the intersect object to a variable such as:
intersect object(
1,cx#,cy#,cz#,chx#,cy#,chz#)
to:
intersect object(
obj,cx#,cy#,cz#,chx#,cy#,chz#)
There should only be two of these, one in the _collision sub routine and one in the _ramp sub routine.
Then before the routine is called, set the variable number like this:
+ Code Snippetobj=10
gosub _collision
obj=20
gosub _collision
for obj=25 to 40
gosub _collision
next obj
At the moment, im trying to figure out how to make multiple objects and a camera can all use the collision but it just aint working for me

Anyone know how to do this?