ID:179649
 
can somebody give me the example of a mob getting a message from an NPC that is just a turf by using the bump() proc
JordanUl wrote:
can somebody give me the example of a mob getting a message from an NPC that is just a turf by using the bump() proc
atom
proc/Bumped(atom/movable/A)

mob
Bump(atom/A)
A.Bumped(src)

turf/NPC
Bumped(mob/M)
M << "Hi there."

Lummox JR