I have tried to this using the Enter proc which only allows istype(A,/obj/ball) and then I went on to Bump() but still no Success :(
Edit:
Heres an example of an object
obj/Ball
icon='Ball.dmi'
density = 1
obj/BallHole //only ball should be able to go through this
icon='Ball.dmi'
icon_state = "BallHold"
density = 1
mob/verb/Shoot(){var/obj/Ball/S = new();walk(S,usr.dir)}
I want the ball to be able to pass through the ball hole and carry on moving but nothing else should be able to.
SubZeroChaos
I believe that should work