ID:955851
 
(See the best response by LordAndrew.)
Code:


Problem description: i got multiple maps one is City and other is jungle how can i tranport player to jungle after city finishes?

Best response
Multiple .dmm files are rolled into one at runtime based on alphabetical order. If you have a city.dmm and jungle.dmm, city.dmm will be Z level 1 and jungle.dmm will be Z level 2. You could transport players based on that.

OR, you could have turfs set up as waypoints of sorts between the maps like...

turf
waypoint
city

jungle

mob
verb
Goto_City()
loc = locate(/turf/waypoint/city)

Goto_Jungle()
loc = locate(/turf/waypoint/jungle)