diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-07-13 18:59:39 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-07-13 18:59:39 +0000 |
commit | 59b107ab0980289844bac25190b79099d259ca9e (patch) | |
tree | 75ed18e673491d391a60c375da08c6343c5599d4 | |
parent | 476aec2e393470fd2b23cc96078140bac34546bf (diff) | |
download | hercules-59b107ab0980289844bac25190b79099d259ca9e.tar.gz hercules-59b107ab0980289844bac25190b79099d259ca9e.tar.bz2 hercules-59b107ab0980289844bac25190b79099d259ca9e.tar.xz hercules-59b107ab0980289844bac25190b79099d259ca9e.zip |
* Fixed error in Rachel's Sanctuary quest.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10880 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | db/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/Changelog.txt | 3 | ||||
-rw-r--r-- | npc/quests/quests_rachel.txt | 8 |
3 files changed, 8 insertions, 5 deletions
diff --git a/db/Changelog.txt b/db/Changelog.txt index 5391320f1..6be23ba5f 100644 --- a/db/Changelog.txt +++ b/db/Changelog.txt @@ -49,7 +49,7 @@ ---- ======================== 07/13 - * Rev. 10878 Updated "Name" fields for 11.2 headgears. [L0ne_W0lf] + * Rev. 10879 Updated "Name" fields for 11.2 headgears. [L0ne_W0lf] * Rev. 10877 Fixed Blue Drooping Kitty. (Missing comma) Thanks to diedlikeahero [L0ne_W0lf] 07/10 * Rev. 10876 G_Bacsojin will summon G_Spring_Rabbit now instead of Green Iguana. [L0ne_W0lf] diff --git a/npc/Changelog.txt b/npc/Changelog.txt index 0b6ba01b6..60aa4bf38 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -1,7 +1,8 @@ Date Added ====== 2007/07/11 - * Rev. 10878 Updated NPCs for Al De Baran [L0ne_W0lf] + * Rev. 10880 Fixed error in Rachel's Sanctuary quest. [L0ne_W0lf] + * Rev. 10879 Updated NPCs for Al De Baran [L0ne_W0lf] - Added Inn NPC for Al De Baran * Fixed problems with Hahoe/Lion/Bride masks quests. * Added Zairik's fix for the wizard quest. diff --git a/npc/quests/quests_rachel.txt b/npc/quests/quests_rachel.txt index 222722e6f..366449902 100644 --- a/npc/quests/quests_rachel.txt +++ b/npc/quests/quests_rachel.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= L0ne_W0lf //===== Current Version: ===================================== -//= 1.5b +//= 1.6 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -40,6 +40,7 @@ //= 1.4 Removed an erroneous "case". Thanks, Jet. [L0ne_W0lf] //= 1.5 Fixed a bug in Bruspetti quest. [SinSloth] //= 1.5b Fixed some typos in various quests. [SinSloth] +//= 1.6 Fixed a couple bugs with the Pope's Office Guards... [L0ne_W0lf] //============================================================ // Lost Child Quest (Prerequisite to High Priest quest) @@ -5898,7 +5899,7 @@ ra_temin,134,128,3 script Pope's Office Guard#rac::raofficeguard 927,{ close; } - if ((ra_tem_q < 15) || (ra_tem_q == 15) && (countitem(7561) > 40)) { + if ((ra_tem_q < 15) || (ra_tem_q == 15) && (countitem(7561) < 40)) { mes "[Pope's Office Guard]"; mes "I'm sorry, but outsiders"; mes "typically aren't allowed"; @@ -5923,8 +5924,9 @@ ra_temin,134,128,3 script Pope's Office Guard#rac::raofficeguard 927,{ mes "those to me, and I'll let you"; mes "enter and see the pope"; mes "Welcome, brave "+strcharinfo(0)+"."; + close2; set ra_tem_q,16; - close; + delitem 7561,40; //Ice_Heart } if (ra_tem_q == 16) { |