diff options
-rw-r--r-- | npc/Changelog.txt | 1 | ||||
-rw-r--r-- | npc/quests/Kiel_Hyre_Quest.txt | 8 |
2 files changed, 6 insertions, 3 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index ea1761286..b98769f26 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -1,6 +1,7 @@ Date Added ====== 2007/06/10 + * Small fix to Kiel Quest [Playtester] * Fixed exploit and optimized Rachel donations [Playtester] 2007/06/09 * Rev. 10737 Removed an erroneous "case" in Rachel quest. Thanks, Jet. [L0ne_W0lf] diff --git a/npc/quests/Kiel_Hyre_Quest.txt b/npc/quests/Kiel_Hyre_Quest.txt index d21e79c60..20a5b54a5 100644 --- a/npc/quests/Kiel_Hyre_Quest.txt +++ b/npc/quests/Kiel_Hyre_Quest.txt @@ -5135,7 +5135,7 @@ kh_mansion,22,28,4 script Kiel Hyre 903,{ // Allysia //---------------------------------------------------------------------------- kh_mansion,18,30,4 script Allysia 894,{ - cutin "kh_ellisia",2; + if (KielHyreQuest < 46) { mes "[Allysia]"; mes "Who are you?"; @@ -5144,7 +5144,9 @@ kh_mansion,18,30,4 script Allysia 894,{ close; } - else if (KielHyreQuest >= 46) { + cutin "kh_ellisia",2; + + if (KielHyreQuest < 70) { mes "[Allysia]"; mes "You must be surprised"; mes "by everything that's been"; @@ -5295,7 +5297,7 @@ kh_mansion,18,30,4 script Allysia 894,{ } - else if (KielHyreQuest >= 70) { + else { mes "[Allysia]"; mes "......"; mes "........."; |