diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-26 02:39:08 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-26 02:39:08 -0200 |
commit | 7206ef4fe186604c73214cbb493d55a20c8cb01e (patch) | |
tree | 3ddcbb2fc0249b358fb243199a77606e467cd760 | |
parent | 97d2d07e9b48d5b11c872f4e6de975bcd263dd76 (diff) | |
download | serverdata-7206ef4fe186604c73214cbb493d55a20c8cb01e.tar.gz serverdata-7206ef4fe186604c73214cbb493d55a20c8cb01e.tar.bz2 serverdata-7206ef4fe186604c73214cbb493d55a20c8cb01e.tar.xz serverdata-7206ef4fe186604c73214cbb493d55a20c8cb01e.zip |
Audsbel need player help again! And this time, the experience is sweet!
-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?"); |