mob
verb
Create_Planet(map as text)
if(src.planet==0)
if(!map) map=input("Map name","Map name") as text
var/_x=round(input("x size:","New map: x size",world.maxx) as num,1)
var/_y=round(input("y size:","New map: y size",world.maxy) as num,1)
var/_z=round(input("z size:","New map: z size",1) as num,1)
if(_x<1 || _y<1 || _z<1)
usr << "[_x],[_y],[_z] is too big for a planet."
return
if(_x>50 || _y>50 || _z<1)
usr<<"[_x],[_y],[_z] is too big for a planet."
var/obj/R=new/map
R.x=_x
R.y=_y
R.z=_z
src<<"The planet will start as red. You can change it's color later."
var/obj/Z=new/obj/planetr(src.loc)
Z.claimer=src.ckey
src.planet=1
else
src<<"You have already made a planet!"
Problem description: I'm trying to make it so that when you make your planet, it makes a new layer so you can visit the planet without it connecting to other people's planets. Error: Verbs.dm:14:error: /map: undefined type path