ID:179480
 
Does anyone know the code (or can explane how) to right click an mob (or icon) in the game to talk to it and then it sends you to an coordinates
Shadowalker wrote:
Does anyone know the code (or can explane how) to right click an mob (or icon) in the game to talk to it and then it sends you to an coordinates

I SURE DO! You could give the mob or obj or whatever a verb, and have that verb transport the person that "talks" to them. Something like this;

mob
Man
verb
transport() //Gives Man a verb called transport
set src in oview(1) //Makes it so you have to be one tile away.
usr.loc = locate(1,1,1) //set the usr loc at 1,1,1

This will let the person right click on them and be transported to wherever when they are one tile away. I hope I helped and that you could learn something from this ;)

?The Wizard of How¿
In response to The Wizard of How
Thanks :)