diff options
Diffstat (limited to 'npc/009-2')
-rw-r--r-- | npc/009-2/scholar.txt | 8 |
1 files changed, 4 insertions, 4 deletions
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) |