you can come round this problem very easy:
set display mode 630,480,32
sync rate 60
autocam off
position camera 0,0,0,-100
`create any object.
make object sphere 1, 40
position object 1,0,0,0
`create dummy objects
make object sphere 2,0
position object 2,60,0,0
make object sphere 3,0
position object 3,-60,0,0
do
o# = wrapvalue(o#+1)
position object 1,70*sin(O#),0,0
if object collision(1,2)
set cursor 2,2
print "point 60,0,0 is inside the big ball"
endif
if object collision(1,3)
set cursor 2,2
print "point -60,0,0 is inside the big ball"
endif
LOOP
end