ID:178221
 
Say I wanted to make a mob that once you talked to it, it moved to a specific location. I can make the mob move, I just don't know how to make it to where it will move after being talked to. Thanks for the help...

Punkrock546
well assuming i know what you mean

mob/NPV
icon='icon.dmi'
verb/Talk()
usr<<"Hey f you...im goin away"
src.loc=locate(1,1,2)
or if u want you to go sum where

mob/NPV
icon='icon.dmi'
verb/Talk()
usr<<"Hey f you...im sending you away"
usr.loc=locate(1,1,2)