diff options
author | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-06-10 10:45:14 +0000 |
---|---|---|
committer | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-06-10 10:45:14 +0000 |
commit | 3b4488672f25ca270b5e6cb011b800d4b05ddffe (patch) | |
tree | e533f5e52ea528c7cf6a98ac5a953990d26f70f0 /npc/quests | |
parent | d22260898b9f24093c20101050b7696dea5a4c5d (diff) | |
download | hercules-3b4488672f25ca270b5e6cb011b800d4b05ddffe.tar.gz hercules-3b4488672f25ca270b5e6cb011b800d4b05ddffe.tar.bz2 hercules-3b4488672f25ca270b5e6cb011b800d4b05ddffe.tar.xz hercules-3b4488672f25ca270b5e6cb011b800d4b05ddffe.zip |
Small fix to Kiel Quest
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10742 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests')
-rw-r--r-- | npc/quests/Kiel_Hyre_Quest.txt | 8 |
1 files changed, 5 insertions, 3 deletions
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 "........."; |