ID:167817
 
How can I make a verb, were you can click anywere on the map and it will teleport you there? Or is that impossible?
turf/Click()
usr.loc=src.loc
In response to Mysame
You would want usr.loc=src, not usr.loc=src.loc
In response to Loduwijk
Wouldn't that land you in their contents?
In response to Mysame
Yes, and that is what you want. You want to be in the turf's contents, not the contents of the area that the turf is in.

Being in a turf's contents places you on top of that turf object in the map. Whenever you move around the map, every step you are shifting into the contents list of the turf you are entering.
In response to Loduwijk
I didn't know that...