Map datum in BYOND Discussion
|
|
This may sound like a bit much and I know swap maps does something similar but I feel it would be better if it was built in.
Here's an example on how you would use it
world/map=/map/Main
map/Main/File='Main.dmm'
map/House/File='House.dmm'
mob/verb/Make_Your_Dream_House()
var/map/A = new /map/House(world.maps)
usr.loc=locate(1,1,1,A)//x,y,z,map
usr<<"You are filled with joy."
I think it would lift a few restraints on byond...
Tell me if you would like it or dislike it.
|