diff options
author | daegaladh <daegaladh@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-08-08 04:19:17 +0000 |
---|---|---|
committer | daegaladh <daegaladh@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-08-08 04:19:17 +0000 |
commit | e561453c1088be8678b8b4972c7a14e9b2ba6299 (patch) | |
tree | a3bd22079796a9d6aed41702c3f08a1fc9d4da27 /npc/quests/quests_alberta.txt | |
parent | d4fbc693bd0c76d4ab354510b2077c05d55fe036 (diff) | |
download | hercules-e561453c1088be8678b8b4972c7a14e9b2ba6299.tar.gz hercules-e561453c1088be8678b8b4972c7a14e9b2ba6299.tar.bz2 hercules-e561453c1088be8678b8b4972c7a14e9b2ba6299.tar.xz hercules-e561453c1088be8678b8b4972c7a14e9b2ba6299.zip |
Fixed a bunch of bugs and typos, and made some little optimizations in various quests.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16604 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/quests_alberta.txt')
-rw-r--r-- | npc/quests/quests_alberta.txt | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/npc/quests/quests_alberta.txt b/npc/quests/quests_alberta.txt index d8d23b2ac..8eb6bfbe9 100644 --- a/npc/quests/quests_alberta.txt +++ b/npc/quests/quests_alberta.txt @@ -2348,8 +2348,7 @@ alberta_in,131,95,5 script Iromo#ep3_2 706,{ next; mes "-Silent pause-"; next; - set name,PcName; - mes "-" + name + " starts to speak-"; + mes "-"+strcharinfo(0)+" starts to speak-"; mes "-And tells him of the journeys-"; mes "-Adventures, joy, sorrow, and loss-"; mes "-One by one to the boy-"; @@ -2726,8 +2725,10 @@ alberta_in,131,95,5 script Iromo#ep3_2 706,{ mes "that grows outside of the village."; mes "I can stand it."; next; - set ep13_2_hiki,2; - changequest 10079,10080; + if (ep13_2_hiki == 1) { + set ep13_2_hiki,2; + changequest 10079,10080; + } mes "[Iromo]"; mes "But, I can have other food"; mes "instead of the outside food."; @@ -2840,7 +2841,7 @@ alberta_in,120,93,3 script Iromo's Mother#ep3_2 53,{ mes "But, somehow..."; mes "he doesn't go out anymore."; next; - if (BaseLevel > 40) { + if (BaseLevel > 40 && checkquest(10079) == -1) { set ep13_2_hiki,1; setquest 10079; } @@ -2948,7 +2949,7 @@ alberta,45,106,5 script Little Boy#ep3_2 706,{ } if (ep13_2_hiki == 3) { mes "[Little Boy]"; - mes "I am hugry. We don't have"; + mes "I am hungry. We don't have"; mes "much snack bar in this village."; next; mes "[Little Boy]"; @@ -2980,7 +2981,7 @@ alberta,45,106,5 script Little Boy#ep3_2 706,{ close; } mes "[Little Boy]"; - mes "I am hugry. We don't have"; + mes "I am hungry. We don't have"; mes "much snack bar in this village."; next; mes "[Little Boy]"; |