diff options
author | mekolat <mekolat@gmail.com> | 2014-06-21 18:46:47 -0400 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2014-06-30 22:33:02 -0500 |
commit | e27b59c8e6f95ee9e7078627d52c09822b8c54b4 (patch) | |
tree | 164303c774b42642ad37d7d23566c3fabde06de4 /world/map/npc/017-9 | |
parent | 1b136cee9b820c53ffffa697c989b801b18edae6 (diff) | |
download | serverdata-e27b59c8e6f95ee9e7078627d52c09822b8c54b4.tar.gz serverdata-e27b59c8e6f95ee9e7078627d52c09822b8c54b4.tar.bz2 serverdata-e27b59c8e6f95ee9e7078627d52c09822b8c54b4.tar.xz serverdata-e27b59c8e6f95ee9e7078627d52c09822b8c54b4.zip |
Fix map layers in Hurnscald
Game staff room
closes #122
Diffstat (limited to 'world/map/npc/017-9')
-rw-r--r-- | world/map/npc/017-9/_import.txt | 1 | ||||
-rw-r--r-- | world/map/npc/017-9/_warps.txt | 12 | ||||
-rw-r--r-- | world/map/npc/017-9/secret.txt | 39 |
3 files changed, 46 insertions, 6 deletions
diff --git a/world/map/npc/017-9/_import.txt b/world/map/npc/017-9/_import.txt index 4e650df8..b423c6ff 100644 --- a/world/map/npc/017-9/_import.txt +++ b/world/map/npc/017-9/_import.txt @@ -5,3 +5,4 @@ npc: npc/017-9/_mobs.txt npc: npc/017-9/_warps.txt npc: npc/017-9/announcements.txt npc: npc/017-9/mapflags.txt +npc: npc/017-9/secret.txt diff --git a/world/map/npc/017-9/_warps.txt b/world/map/npc/017-9/_warps.txt index 57d73676..22de71a5 100644 --- a/world/map/npc/017-9/_warps.txt +++ b/world/map/npc/017-9/_warps.txt @@ -1,9 +1,9 @@ // This file is generated automatically. All manually changes will be removed when running the Converter. // Backstage warps -017-9.gat,22,20|warp|To Left Door Onstage|-1,-1,017-2.gat,23,21 -017-9.gat,26,21|warp|To Outside|-1,-1,017-1.gat,43,34 -017-9.gat,30,20|warp|To Right Door Onstage|-1,-1,017-2.gat,29,21 -017-9.gat,21,28|warp|To Left Trapdoor Onstage|-1,-1,017-2.gat,25,25 -017-9.gat,26,28|warp|To Centre Trapdoor Onstage|-1,-1,017-2.gat,26,23 -017-9.gat,31,28|warp|To Right Trapdoor Onstage|-1,-1,017-2.gat,27,25 +017-9.gat,22,20|warp|To Nivalis|-1,-1,020-1.gat,60,75 +017-9.gat,26,21|warp|To Hurnscald|-1,-1,009-1.gat,42,45 +017-9.gat,30,20|warp|To Tumlishar|-1,-1,001-1.gat,33,65 +//017-9.gat,21,28|warp|To Left Trapdoor Onstage|-1,-1,017-2.gat,25,25 +017-9.gat,26,28|warp|To second warpzone|-1,-1,017-2.gat,26,23 +017-9.gat,31,28|warp|To Crypt|-1,-1,027-2.gat,118,109 diff --git a/world/map/npc/017-9/secret.txt b/world/map/npc/017-9/secret.txt new file mode 100644 index 00000000..43e485c7 --- /dev/null +++ b/world/map/npc/017-9/secret.txt @@ -0,0 +1,39 @@ +009-1.gat,42,43,0|script|#SecretDoor|127,0,0, +{ + if (getgmlevel() < 40 && !debug) goto L_close; + warp "017-9.gat", 26, 25; + goto L_close; + +L_close: + close; +} + +020-1.gat,60,76,0|script|#SecretDoor2|127,0,0, +{ + if (getgmlevel() < 40 && !debug) goto L_close; + warp "017-9.gat", 22, 22; + goto L_close; + +L_close: + close; +} + +001-1.gat,32,65,0|script|#SecretDoor3|127,0,0, +{ + if (getgmlevel() < 40 && !debug) goto L_close; + warp "017-9.gat", 30, 22; + goto L_close; + +L_close: + close; +} + +027-2.gat,118,111,0|script|#SecretDoor4|127,0,0, +{ + if (getgmlevel() < 40 && !debug) goto L_close; + warp "017-9.gat", 30, 29; + goto L_close; + +L_close: + close; +} |