ID:150171
 
hmmm how can i enter my door in the cave entrance to teleport me inside? i know some people said this is the hardest code ever
No not hard at all, you'd use Enter() and change the loc:

turf/cave_door
icon='cavedoor.dmi'
Enter(mob/M)
..()
M.loc=locate(x,y,z)


Not hard at all just like I said.
Migzor wrote:
hmmm how can i enter my door in the cave entrance to teleport me inside? i know some people said this is the hardest code ever

Getting a working say verb is the hardest thing in BYOND to do! :P

Here ya go:
turf
cavedoor
icon = 'cavedoor.dmi
Enter()
usr.loc = locate(x,y,z)//insert the coordinates here
..()


By the way, one space equals one tab :)

-Sariat
In response to Nadrew
Mine had comments! :P
In response to Sariat
So?
In response to Nadrew
Nadrew wrote:
So?

Just bored :)
In response to Sariat
awesome, thanks guys
In response to Migzor
Migzor wrote:
awesome, thanks guys

No problem :)