diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-09 08:38:37 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-09 08:38:37 +0000 |
commit | dc623e42cce95bdecf60c2253a9c847a920807a1 (patch) | |
tree | a5530e4416f7e61290a23bff81c4a12908bb9d5b /npc | |
parent | 9c0e6c23b27ed559d92fcf983d83fcb22a6e9544 (diff) | |
download | hercules-dc623e42cce95bdecf60c2253a9c847a920807a1.tar.gz hercules-dc623e42cce95bdecf60c2253a9c847a920807a1.tar.bz2 hercules-dc623e42cce95bdecf60c2253a9c847a920807a1.tar.xz hercules-dc623e42cce95bdecf60c2253a9c847a920807a1.zip |
fixed Ears of Demon quest
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@525 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 1 | ||||
-rw-r--r-- | npc/quests/newgears/old_blacksmith.txt | 8 |
2 files changed, 5 insertions, 4 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index 324c2270b..c3b26ee5a 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -31,6 +31,7 @@ Other Ppl Date Added ====== 12/08 + * Changed ingredients of Ears of Demon Quest: Deviruchi Hat -> Evil Wing [Lupus] * Added translated shop names for the Extended Shop, I'unno who made it. o.O; [Mass Zero] * Changed Lord of Death spawn intervals to 90 minutes based on jRO [celest] * Added nomemo flags for Niflheim and some maps [celest] diff --git a/npc/quests/newgears/old_blacksmith.txt b/npc/quests/newgears/old_blacksmith.txt index f26fd658d..12ad6e4a7 100644 --- a/npc/quests/newgears/old_blacksmith.txt +++ b/npc/quests/newgears/old_blacksmith.txt @@ -18,7 +18,7 @@ yuno.gat,246,51,4 script Old Blacksmith 813,{ mes "Well then my good man!"; mes "What can I do for you?"; next; - menu "Give me the ears of a devil!",M_EOD,"Give me the ears of an angel!",M_EOA,"Nothing, thanks",M_EXIT; + menu "Give me the Ears of Devil!",M_EOD,"Give me the Ears of Angel!",M_EOA,"Nothing, thanks",M_EXIT; M_EOD: mes "[Old Blacksmith]"; @@ -27,12 +27,12 @@ M_EOD: next; menu "Dont care, make me the Item!",-,"What are the requirements?",M_EODREQ,"Nothing",M_EXIT; - if ((countitem(5038) < 1) || (countitem(2286) < 1) || (Zeny < 20000)) GOTO L_NOITEM_EOD;//Items: Deviruchi Hat, Elven Ears, + if ((countitem(2255) < 1) || (countitem(2286) < 1) || (Zeny < 20000)) GOTO L_NOITEM_EOD;//Items: Evil Wing, Elven Ears, mes "[Old Blacksmith]"; mes "Wow, never thought a little fella like you could get tha.t"; mes "Bwahaha, ok."; next; - delitem 5038,1;//Items: Deviruchi Hat, + delitem 2255,1;//Items: Evil Wing, delitem 2286,1;//Items: Elven Ears, set Zeny,Zeny-20000; getitem 5068,1;//Items: Ears Of Demon, @@ -48,7 +48,7 @@ L_NOITEM_EOD: M_EODREQ: mes "[Old Blacksmith]"; mes "Well, let's see..."; - mes "I need something for the evil, that be a Deviruchi Cap,"; + mes "I need something for the evil, that be an Evil Wing,"; mes "I also need the ears for the base of it, Elven Ears would be OK,"; mes "Last of all, I need 20,000 Zeny for me troubles."; next; |