diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-04 01:04:32 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-04 01:04:32 +0000 |
commit | 347ff55f3d5f77b9c02ac622acb221d34fcbbdbc (patch) | |
tree | ea4e88e8533809548d38b346ea4a2171b7bce5bc /npc/quests/Kiel_Hyre_Quest.txt | |
parent | 498f4d078429004abd60e9417d77fe41fc453472 (diff) | |
download | hercules-347ff55f3d5f77b9c02ac622acb221d34fcbbdbc.tar.gz hercules-347ff55f3d5f77b9c02ac622acb221d34fcbbdbc.tar.bz2 hercules-347ff55f3d5f77b9c02ac622acb221d34fcbbdbc.tar.xz hercules-347ff55f3d5f77b9c02ac622acb221d34fcbbdbc.zip |
Another fix for elly, no longer RESETS to 26 when you tak to her.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10449 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/Kiel_Hyre_Quest.txt')
-rw-r--r-- | npc/quests/Kiel_Hyre_Quest.txt | 35 |
1 files changed, 33 insertions, 2 deletions
diff --git a/npc/quests/Kiel_Hyre_Quest.txt b/npc/quests/Kiel_Hyre_Quest.txt index b4b9277cc..5b48bda9d 100644 --- a/npc/quests/Kiel_Hyre_Quest.txt +++ b/npc/quests/Kiel_Hyre_Quest.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= L0ne_W0lf (Script), DZeroX (Timer) //===== Current Version: ===================================== -//= 2.1 +//= 2.2 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -37,6 +37,7 @@ //= Made .KHQuestBusy$ into a temp global variable. $@KHQuestBusy$. //= 2.0 Changed the labels on the "Big Doors" to "Identifier Names" to prevent an error with using getvariableofnpc [L0ne_W0lf] //= 2.1 Fifth door now checks for a variable HIGHER or EQUAL to 74 not 84, as pointed out by Stollen. [L0ne_W0lf] +//= 2.2 Another fix for elly, no longer RESETS to 26 when you tak to her. [L0ne_W0lf] // //============================================================ @@ -1429,7 +1430,7 @@ kh_school,179,39,1 script Cute Student 895,{ goto KH_Step26; } - else if (KielHyreQuest >= 26) { + else if (KielHyreQuest == 26) { KH_Step26: mes "[Elly]"; mes "Say, "+strcharinfo(0)+","; @@ -1461,6 +1462,36 @@ kh_school,179,39,1 script Cute Student 895,{ goto KH_Elly_end; } + else if (KielHyreQuest > 26) { + mes "[Elly]"; + mes "Say, "+strcharinfo(0)+","; + mes "if it's okay, would you"; + mes "please go find what my"; + mes "grandpa left for me in"; + mes "the ^FF0000cottage study^000000? You're"; + mes "the only one I can trust!"; + next; + mes "[Elly]"; + mes "Anyway, I'll see you later"; + mes "in the evening! Please come"; + mes "by my ^FF0000dorm room^000000. Um, the"; + mes "dorms are in the church just"; + mes "behind the academy, okay?"; + next; + mes "[Elly]"; + mes "My room is in the back,"; + mes "and it's on the ^FF0000second floor^000000"; + mes "^FF0000on the left side^000000. Please use"; + mes "a ladder to come up, okay?"; + mes "I'll leave my window open"; + mes "for you, so just come, okay?"; + next; + mes "[Elly]"; + mes "Hurry, hurry, the"; + mes "teacher's coming!"; + goto KH_Elly_end; + } + KH_Elly_end: close2; cutin "",255; |