ID:173812
 
Hi is there a way so you pick snow map it goes to a snow.dmp but if you pick sand it goes to sand.dmp can you do this?
I dont know...Just make more than one Z of your map (the levels of the map) and to go to the second layer you would but locate(1,1,2) instead of locate(1,1,1)
yeah but i hate doing it that way
In response to CrazyFighter
The maps are stacked in alphabetical order. So sand.dmp would have Z level 1, and snow.dmp would have Z level 2. (Assuming that sand.dmp only has one Z level in it; if it has 2 Z levels, then snow.dmp will start at Z level 3.)
CrazyFighter wrote:
Hi is there a way so you pick snow map it goes to a snow.dmp but if you pick sand it goes to sand.dmp can you do this?

Best approach: Use the tag var to tag one of the turfs on each map with a name, like "snow.dmp" and "sand.dmp" for example. Then just send the player there:
loc = locate("[ckey(whichmap)].dmp")

Lummox JR