diff options
-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; } |