diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-02-26 23:39:13 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-02-26 23:39:13 +0000 |
commit | 6bea9425104111de541f32d08bc84807773d1017 (patch) | |
tree | d8569cda29c88b6b7dfc22d410a25dfe0c544183 /npc/warps/dungeons | |
parent | 2be5a82d3849a499377ece635b4ec3932dfc6ec9 (diff) | |
download | hercules-6bea9425104111de541f32d08bc84807773d1017.tar.gz hercules-6bea9425104111de541f32d08bc84807773d1017.tar.bz2 hercules-6bea9425104111de541f32d08bc84807773d1017.tar.xz hercules-6bea9425104111de541f32d08bc84807773d1017.zip |
Fixed bugreport:1057 and bugreport:1058
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12244 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/warps/dungeons')
-rw-r--r-- | npc/warps/dungeons/lhz_dun.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/npc/warps/dungeons/lhz_dun.txt b/npc/warps/dungeons/lhz_dun.txt index b29252842..d75a10276 100644 --- a/npc/warps/dungeons/lhz_dun.txt +++ b/npc/warps/dungeons/lhz_dun.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= Sara-chan (1.0) //===== Current Version: ===================================== -//= 2.1 +//= 2.1b //===== Compatible With: ===================================== //= Any Athena Version; RO Episode 8+ //===== Description: ========================================= @@ -29,6 +29,7 @@ //= Updated Sewer pipe dungeon entrance. //= Removed dialog from level 3 entrance warp. //= 2.1a Updated 3rd floor warp. Again... [L0ne_W0lf] +//= 2.1b Fixed reverse level requirement in 3rd floor warp. [L0ne_W0lf] //============================================================ lhz_dun01,149,291,0 warp lhz_dun1-1 1,1,lhz_in01,19,129 @@ -41,10 +42,10 @@ lhz_dun02,17,156,0 warp lhz_dun4-2 1,1,lhz_dun01,18,150 lhz_dun02,149,149,4 script lhz_dun5-1 45,2,2,{ OnTouch: if ((Upper != 1 && BaseLevel<95) || (Upper == 1 && BaseLevel<90)) { - warp "lhz_dun03",140,133; + warp "lhz_dun02",145,149; } else { - warp "lhz_dun02",145,149; + warp "lhz_dun03",140,133; } end; } |