diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-0/audsbel.txt | 8 | ||||
-rw-r--r-- | npc/009-2/scholar.txt | 8 |
2 files changed, 7 insertions, 9 deletions
diff --git a/npc/003-0/audsbel.txt b/npc/003-0/audsbel.txt index a8f495eef..3e65a3628 100644 --- a/npc/003-0/audsbel.txt +++ b/npc/003-0/audsbel.txt @@ -3,13 +3,11 @@ // Jesusalva // Description: // One of the Mana Magic Leaders -// Planned, there are only the four Mana Wizards: Auldsbel (Tulimshar), Sagratha (Woodlands), Morgan (Candor), and UNKNOWN (Nivalis). +// Planned, there are only the four Mana Wizards: Auldsbel (Tulimshar), Sagratha (Woodlands), Morgan (Candor), Blue Sage (Nivalis), Lalica (LoF). // 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... +// Gives #mkpot +// TODO: Make dye? Make Lifestone? 003-0,32,24,0 script Auldsbel NPC_AULDSBEL,{ if (MAGIC_LVL < 2) diff --git a/npc/009-2/scholar.txt b/npc/009-2/scholar.txt index 07c746063..dd62806c9 100644 --- a/npc/009-2/scholar.txt +++ b/npc/009-2/scholar.txt @@ -13,7 +13,7 @@ .@q=getq(HalinarzoQuest_MageEquipment); mesn; mesq l("I am Bella, the Scholar."); - if (!mstone($MAGIC_TIER)) goto L_NotEnough; + if (!mstone(MAGIC_LVL)) goto L_NotEnough; mesq l("Out of my experience, you are ready to learn magic."); next; mesn; @@ -24,13 +24,13 @@ close; L_NotEnough: - if (BaseLevel < $MANA_BLVL+$MAGIC_TIER*rand(18,22)) { + if (BaseLevel < $MANA_BLVL+MAGIC_LVL*rand(18,22)) { mesq l("Out of my experience, your level may not be enough."); } - if (JobLevel < $MANA_JLVL+$MAGIC_TIER*rand(12,26)) { + if (JobLevel < $MANA_JLVL+MAGIC_LVL*rand(12,26)) { mesq l("Out of my experience, your job may not be enough."); } - if (readparam(bInt) < $MANA_BINT+$MAGIC_TIER*rand(18,22)) { + if (readparam(bInt) < $MANA_BINT+MAGIC_LVL*rand(18,22)) { mesq l("Out of my experience, your base intelligence may not be enough."); } if (.@q < 1) |