I apologize for the subject, its not very descriptive. I wasn't thinking at the time, so sorry.
hi guys, i know i said i'd do this without help, but i dont' get whats going on. The sphere rolls over the cone and is supposed to pick it up, but no dice. I don't know what to do, could somebody help me please?
sync on
sync rate 60
make object sphere 1,4
color object 1,rgb(0,200,0)
position object 1,0,0,50
make object collision box 1,-12.5,-20,-12.5,12.5,20,12.5,0
make object cone 2,25.0
position object 2,0,0,30
scale object 2,10,0,10
if object collision(1,2)=1
glue object to limb 2,1,4
position object 2,0,0,0
set object collision off 2
endif
do
if leftkey() then turn object left 1,2
if rightkey() then turn object right 1,2
if upkey() then move object 1,1
if downkey() then move object 1,-1
sync
loop