ID:261224
 
I'm trying to use the Bump proc to delete a mob when you bump into it. Here's what I have so far;
mob
Wuss
Bump(mob/Wuss)
del(src)

When you bump into the Wuss, nothing happens. What's wrong with it?
Thanx
-Wizard O' How-
your bump is defined to be used BY the wuss, not on him. Also, src is the object using the verb.

what you want is to have a proc that is called by the bumper. in other words let the player's mob have a bump proc that calls wuss' BUMPED proc. inside bumped is where you place the delete.

I believe that the tutorial 'a step byond' covers this.