summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-02-26 23:39:13 +0000
committerL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-02-26 23:39:13 +0000
commit6bea9425104111de541f32d08bc84807773d1017 (patch)
treed8569cda29c88b6b7dfc22d410a25dfe0c544183 /npc
parent2be5a82d3849a499377ece635b4ec3932dfc6ec9 (diff)
downloadhercules-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')
-rw-r--r--npc/Changelog.txt2
-rw-r--r--npc/quests/quests_veins.txt7
-rw-r--r--npc/warps/dungeons/lhz_dun.txt7
3 files changed, 10 insertions, 6 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt
index 03b41abb0..932c31a92 100644
--- a/npc/Changelog.txt
+++ b/npc/Changelog.txt
@@ -1,5 +1,7 @@
Date Added
======
+2008/02/26
+ * Rev 12244 Fixed bugreport:1057 and bugreport:1058 [L0ne_W0lf]
2008/02/25
* Rev 12241 Implemented Veins Siblings quest. [L0ne_W0lf]
* Added NPCs for Thor Volcano Base quest. Quest is inactive.
diff --git a/npc/quests/quests_veins.txt b/npc/quests/quests_veins.txt
index 1f03c79a5..c32085dce 100644
--- a/npc/quests/quests_veins.txt
+++ b/npc/quests/quests_veins.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.2
+//= 1.3
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -31,6 +31,7 @@
//= 1.2 Added Veins Siblings Quest. [L0ne_W0lf]
//= Added Veins Thor Volcano Base Quest NPC. [L0ne_W0lf]
//= Start NPC is missing, but will be added when I get it.
+//= 1.3 Fixed two typos small in Asbar. [L0ne_W0lf]
//============================================================
// Stone Quest
@@ -325,7 +326,7 @@ ve_in,169,310,6 script Strange Old Man#ve 121,{
mes "You made me screw up!";
next;
specialeffect 90; //EF_LORD
- percentheal 30,0;
+ percentheal -30,0;
next;
mes "[Absar]";
mes "!@#$%#@#$!*~";
@@ -400,7 +401,7 @@ ve_in,169,310,6 script Strange Old Man#ve 121,{
close;
}
else if (veins_stone == 2) {
- if (countitem(999) > 4 && 7561 > 1 && countitem(1033) > 4) {
+ if (countitem(999) > 4 && countitem(7561) > 1 && countitem(1033) > 4) {
mes "[Absar]";
mes "Good, you finally";
mes "brought everthing.";
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;
}