diff options
author | Zephiris <Zephiris@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-01-31 12:22:56 +0000 |
---|---|---|
committer | Zephiris <Zephiris@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-01-31 12:22:56 +0000 |
commit | f81ff05f224e35e8c95c0358dabedf6f926147fc (patch) | |
tree | ff9ff59bf071963204f1b3590b5d8303fbc48a15 | |
parent | 4ef3c7d4c505e36f22c149545a2ab234ff6c6670 (diff) | |
download | hercules-f81ff05f224e35e8c95c0358dabedf6f926147fc.tar.gz hercules-f81ff05f224e35e8c95c0358dabedf6f926147fc.tar.bz2 hercules-f81ff05f224e35e8c95c0358dabedf6f926147fc.tar.xz hercules-f81ff05f224e35e8c95c0358dabedf6f926147fc.zip |
- Fixed another bug in the monk quest. [Zephiris]
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5131 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/jobs/2-2/monk.txt | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index 07d6cb1ae..9b68be02f 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -28,6 +28,8 @@ Nexon Date Added
======
+01/31
+ * Fixed another bug in the monk quest. [Zephiris]
01/29
* Updated the Juperos dungeon spawns according to ROmap. [MasterOfMuppets]
01/28
diff --git a/npc/jobs/2-2/monk.txt b/npc/jobs/2-2/monk.txt index d9af5a8e1..3a1e70bd4 100644 --- a/npc/jobs/2-2/monk.txt +++ b/npc/jobs/2-2/monk.txt @@ -19,6 +19,7 @@ //= to go. [Lupus] 1.7 Fixed warps19/20 [Yor]
//= 1.8 Fixed bugs. Fixed Green Potion exploit. Getting rid of Jfunc mess [Lupus]
//= 1.9 Added a missing check in Fuhai and fixed a LOT of Engrish. [Zephiris]
+//= 1.9b Fixed another bug in Fuhai. [Zephiris]
//============================================================
@@ -152,7 +153,7 @@ monk_in.gat,99,58,4 script Elder Wuhai 60,{ if(MONK_Q == 4) goto Part2;
if(MONK_Q >= 5 && MONK_Q < 10) goto Part3;
if(MONK_Q >= 10 && countitem(506) > 0) goto Part4;//Items: Green_Potion,
- if(MONK_Q == 11 && countitem(506) == 0) goto Part5;//Items: Green_Potion,
+ if(MONK_Q >= 10 && countitem(506) == 0) goto Part5;//Items: Green_Potion,
if(BaseJob == Job_Monk) goto Part6;
if(BaseJob == Job_Acolyte) goto Part7;
|