diff options
-rw-r--r-- | npc/003-0/audsbel.txt | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/npc/003-0/audsbel.txt b/npc/003-0/audsbel.txt index cdb409ac5..49217ed25 100644 --- a/npc/003-0/audsbel.txt +++ b/npc/003-0/audsbel.txt @@ -192,6 +192,40 @@ L_Magic: mesq l("This is just a friendly advise. We don't take magic lightly. And you shouldn't, either."); } break; + // Help on research to gain his favor + case 3: + mesn; + mesq l("I actually need help. I am a mage, and I'm feeling lazy to get the stuff I need."); + next; + mesn; + mesq l("You don't seem to have anything better to do, anyway."); + mesq l("Now please bring me @@/2 @@, @@/20 @@, @@/30 @@ and @@/70 @@ so I don't need to leave here and start travelling everywhere...", countitem(IcedBottle), getitemlink(IcedBottle), countitem(Root), getitemlink(Root), countitem(Potatoz), getitemlink(Potatoz), countitem(Moss), getitemlink(Moss)); + next; + select + l("I'll try to find them."), + l("I actually have them, here."); + if (@menu == 2) { + mes ""; + mesn; + mesq l("Excellent! Let me see..."); + next; + if ( + countitem(IcedBottle) < 2 || + countitem(Root) < 20 || + countitem(Potatoz) < 30 || + countitem(Moss) < 70) + goto L_Lie; + delitem IcedBottle, 2; + delitem Root, 20; + delitem Potatoz, 30; + delitem Moss, 70; + getexp 28692, 0; + Zeny=Zeny+550; + setq General_Auldsbel, 1; + mesn; + mesq l("Yes, many thanks. This will help me a lot."); + } + break; default: mesn; mesq l("Uhm, no, not really. Maybe later, who knows?"); |