ID:146481
 
In my game i am working on i am wondering how to include a map1.dmp into my game with coding so what is the coding should i use i tried to look into dream Maker doesnt come up and i want to make it so it work with my guild house system also which is
turf
guilddplanetdoor
icon = 'guilddoor.dmi'//place your own icon here
Enter(O)
if(ismob(O))
var/mob/M = O
if(M.guild == "Guildname")
M.loc=locate(93,41,3)
else
M << "Only guild members are allowed to enter."


Thanks in advance
Every map you have in game, (included) is just another z layer on your map..
so let's say..

MAP A - 1 Layer
MAP B - 1 Layer

Then if you want to teleport to MAP B you would use
src.loc=locate(1,1,2)


It goes in alphabedical order.
In response to Flame Sage
k thanks but how do i create the layers?
In response to Govegtos
Govegtos wrote:
k thanks but how do i create the layers?

well first open your map file, next go to options and press "set map size" and add 1 more 'Z'

O-matic
In response to O-matic
Thanks