ID:150229
 
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?
if its a turf, you might want to use Enter(), using Enter(), cuz its called when something TRIES to enter it.

turf
guy
Enter(mob/M)
alert("Blah blah and some cheese!")
switch(alert("Ok?","Question","Yes","No"))
if("Yes")
alert("Your a damn fool!")
M.name = "Fool"
if("No")
alert("Thats what i thought!")

=D

FIREking

p.s. This is not tested...