diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-26 03:24:38 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-26 03:24:38 -0200 |
commit | b9bb77adf044c9301ad3b28a7305391a9266d9a5 (patch) | |
tree | 5933845e761cd1004d4232f51252871734e83a83 /npc/003-0 | |
parent | 7206ef4fe186604c73214cbb493d55a20c8cb01e (diff) | |
download | serverdata-b9bb77adf044c9301ad3b28a7305391a9266d9a5.tar.gz serverdata-b9bb77adf044c9301ad3b28a7305391a9266d9a5.tar.bz2 serverdata-b9bb77adf044c9301ad3b28a7305391a9266d9a5.tar.xz serverdata-b9bb77adf044c9301ad3b28a7305391a9266d9a5.zip |
New Skill: Make Haste Potion!
Audsbel needs your help again, by the way...
Diffstat (limited to 'npc/003-0')
-rw-r--r-- | npc/003-0/audsbel.txt | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/npc/003-0/audsbel.txt b/npc/003-0/audsbel.txt index 49217ed25..a8f495eef 100644 --- a/npc/003-0/audsbel.txt +++ b/npc/003-0/audsbel.txt @@ -6,6 +6,10 @@ // Planned, there are only the four Mana Wizards: Auldsbel (Tulimshar), Sagratha (Woodlands), Morgan (Candor), and UNKNOWN (Nivalis). // Gives #parum +// Make dye? Make Lifestone? Make potions? Make Arrows? +// GemstonePowder? +// Lifestones currently doesn't have any use, too... +// And parum at times make arrows... 003-0,32,24,0 script Auldsbel NPC_AULDSBEL,{ if (MAGIC_LVL < 2) @@ -221,11 +225,33 @@ L_Magic: delitem Moss, 70; getexp 28692, 0; Zeny=Zeny+550; - setq General_Auldsbel, 1; + setq General_Auldsbel, 4; mesn; mesq l("Yes, many thanks. This will help me a lot."); } break; + // Learn #mkpot + case 4: + mesn; + mesq l("Hmm, I think I can teach you a basic Mana Skill now. This one is more advanced, though."); + next; + skill(TMW2_MKPOT,1,0); + setq General_Auldsbel, 5; + mesn; + mesq l("This is the @@ skill. It transmutes @@ @@ and a single @@ in @@.", "##B@sk-mkpot##b", 10, getitemlink(Plushroom), getitemlink(HastePotion)); + next; + mesn; + mesq l("It may fail, and you might end up with something entirely unexpected!"); + next; + mesn; + mesq l("Unlike Parum, you can use the skill points you get every time your job level rises. That will lower the mana cost and increase success chances."); + next; + mesn; + mesq l("But please be picky with how you spend job points. They are hard to come by, and I'm not entirely sure you can change it later."); + next; + mesn; + mesq l("Also, job levels get really hard to obtain after a while. The decision is up to you, just be aware there's that possibility."); + break; default: mesn; mesq l("Uhm, no, not really. Maybe later, who knows?"); |