Locations
DinosaurMountain
Entered(atom/M)
M.place="Dinosaur Mountain"
if(usr)
usr.GetLocation()//used for when telling the usr its location on hud
turf
Teleporter
icon='object.dmi'
icon_state="Location"
Entered(var/mob/M)
if(M.client)
sleep(2)
if(usr.AirShip==1)
for(var/obj/BackDropStuff/AirShips/AirShip1/H)
M.place=H.place
M.loc=locate(H.x,H.y,H.z)
return
Problem description:
Im trying to make it were when you enter the airship, and at some point you will want to jump off...When you jump off
you will be located at the Airship you was on and it will also give the airships.place to the usr..but for some reason it doesnt work.