| View previous topic :: View next topic |
| Author |
Message |
titeuf
Joined: 29 Jul 2006 Posts: 84
|
Posted: Sun Feb 01, 2009 7:21 am Post subject: Small mapper issue |
|
|
I have a small display problem with the mapper. I use rooms with void and hide flags on to separate areas from each other to make mapping easier as I only have to worry about one area at a time. This works well for most places except for the following case:
| Code: |
/ /
-[ ] [ ]---[ ] [ ]---[ ] [ ]
\ / | / | | |
\ / | / | | |
[ ] [ ]---[ ]---[#] [ ] [ ]---[ ]
/ | \ | \ \
/ | \ | \ \
[ ] [ ]---[ ] [ ] [ ] [ ]---[ ] [ ]
/ | | /
/ | | | /
[ ]---[ ]---------------[ ] [ ]---[ ]---[ ]
|
Here you can't see that there's a room west of where you are that takes you to another area
| Code: |
|
[ ]
|
|
-[#]--
|
|
[ ]
|
|
[ ]
|
|
[ ]
|
|
Ideally I want to see something like this:
| Code: |
/ /
-[ ] [ ]---[ ] [ ]---[ ] [ ]
\ / | / | | |
\ / | / | | |
[ ] [ ]---[ ]- --[#] [ ] [ ]---[ ]
/ | \ | \ \
/ | \ | \ \
[ ] [ ]---[ ] [ ] [ ] [ ]---[ ] [ ]
/ | | /
/ | | | /
[ ]---[ ]---------------[ ] [ ]---[ ]---[ ]
|
to show that there's still a room inbetween those two.
If you want to see the map I've pasted it there: http://pastebin.com/m139ef9dc. In the second map you're standing at room with vum 4. If you go one room east you see the first map shown. |
|
| Back to top |
|
 |
Scandum Site Admin
Joined: 03 Dec 2004 Posts: 3274
|
Posted: Sun Feb 01, 2009 3:28 pm Post subject: |
|
|
Just kick in some more void rooms to space it out?
| Code: |
#alias void {#map get roomvnum result;#map insert %0;#map move %0;#map roomflag void;#map goto $result}
|
Following would do the trick with that alias and the map you gave:
#map goto 422;void e;n;void e;n;n;void e |
|
| Back to top |
|
 |
titeuf
Joined: 29 Jul 2006 Posts: 84
|
Posted: Sun Feb 01, 2009 5:17 pm Post subject: |
|
|
Sweet, that did the trick, thanks!
Also that alias is not needed, you can just do #map insert e void to insert void rooms. |
|
| Back to top |
|
 |
Scandum Site Admin
Joined: 03 Dec 2004 Posts: 3274
|
Posted: Sun Feb 01, 2009 8:58 pm Post subject: |
|
|
Guess even I can't keep up with the changes.  |
|
| Back to top |
|
 |
|