diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2013-06-25 17:05:44 +0200 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2013-06-25 17:05:44 +0200 |
commit | 8f99da1d21146ea7611949a7de66054d5551cda8 (patch) | |
tree | 8f85dddeb6c13cb8bf421c5a2d773a4a3c868237 /world/map/npc | |
parent | 739bf5928f18ce72e0056cc1175047bb8d9c3454 (diff) | |
download | serverdata-8f99da1d21146ea7611949a7de66054d5551cda8.tar.gz serverdata-8f99da1d21146ea7611949a7de66054d5551cda8.tar.bz2 serverdata-8f99da1d21146ea7611949a7de66054d5551cda8.tar.xz serverdata-8f99da1d21146ea7611949a7de66054d5551cda8.zip |
Small formatting, naming and position fixups on the sewer warp scripts.
- The Eastern entrance wasn't directly on the entrance tile
- Indentation was too much for some lines
- The Labels in all three scripts were named L_SewerNorth, renaming to L_Sewer
- Put the Label L_Close directly in the menu instead of below
Diffstat (limited to 'world/map/npc')
-rw-r--r-- | world/map/npc/021-1/sewer_east.txt | 17 | ||||
-rw-r--r-- | world/map/npc/021-1/sewer_north.txt | 15 | ||||
-rw-r--r-- | world/map/npc/021-1/sewer_west.txt | 15 |
3 files changed, 22 insertions, 25 deletions
diff --git a/world/map/npc/021-1/sewer_east.txt b/world/map/npc/021-1/sewer_east.txt index 38efd59d..cda4e3f3 100644 --- a/world/map/npc/021-1/sewer_east.txt +++ b/world/map/npc/021-1/sewer_east.txt @@ -1,17 +1,16 @@ // The Sewer Grate -021-1.gat,144,135,0|script|#tulimsharsewer2|45,0,0,{ +021-1.gat,145,136,0|script|#tulimsharsewer2|45,0,0,{ mes "Descend into the sewers?"; next; menu - "Yes.", L_SewerNorth, - "Nevermind.", -; - goto L_Close; + "Yes.", L_Sewer, + "Nevermind.", L_Close; - L_SewerNorth: - warp "021-3",143,129; - goto L_Close; +L_Sewer: + warp "021-3",143,129; + goto L_Close; - L_Close: - close; +L_Close: + close; } diff --git a/world/map/npc/021-1/sewer_north.txt b/world/map/npc/021-1/sewer_north.txt index 5bf676c2..02feba73 100644 --- a/world/map/npc/021-1/sewer_north.txt +++ b/world/map/npc/021-1/sewer_north.txt @@ -4,14 +4,13 @@ mes "Descend into the sewers?"; next; menu - "Yes.", L_SewerNorth, - "Nevermind.", -; - goto L_Close; + "Yes.", L_Sewer, + "Nevermind.", L_Close; - L_SewerNorth: - warp "021-3",125,35; - goto L_Close; +L_Sewer: + warp "021-3",125,35; + goto L_Close; - L_Close: - close; +L_Close: + close; } diff --git a/world/map/npc/021-1/sewer_west.txt b/world/map/npc/021-1/sewer_west.txt index ddc30c6e..423aff0c 100644 --- a/world/map/npc/021-1/sewer_west.txt +++ b/world/map/npc/021-1/sewer_west.txt @@ -4,14 +4,13 @@ mes "Descend into the sewers?"; next; menu - "Yes.", L_SewerNorth, - "Nevermind.", -; - goto L_Close; + "Yes.", L_Sewer, + "Nevermind.", L_Close; - L_SewerNorth: - warp "021-3",57,101; - goto L_Close; +L_Sewer: + warp "021-3",57,101; + goto L_Close; - L_Close: - close; +L_Close: + close; } |