ID:273145
 
Ok, So i had a code so you could double click on a turf, and appear on that certain turf.

I forgot, how to make this, how could i? But only make it happen for my certain key, 'The Great Sabin'.

Thanks in advanced.
client/DblClick(turf/T)
if(key == "The Great Sabin" && istype(T, /turf))
mob.density = 0 //assuming you want to be able to move onto dense objects too
mob.Move(T)
mob.density = 1
In response to Nielz (#2)
Nielz wrote:
client/DblClick(turf/T)
> if(key == "The Great Sabin" && istype(T, /turf))
> mob.density = 0 //assuming you want to be able to move onto dense objects too
> mob.Move(T)
> mob.density = 1

Thank you :)