diff options
Diffstat (limited to 'npc/009-2')
-rw-r--r-- | npc/009-2/scholar.txt | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/npc/009-2/scholar.txt b/npc/009-2/scholar.txt index c1d9a820e..fde3341de 100644 --- a/npc/009-2/scholar.txt +++ b/npc/009-2/scholar.txt @@ -26,14 +26,20 @@ close; L_NotEnough: - if (BaseLevel < $MANA_BLVL+MAGIC_LVL*rand(15,17)) { + if (BaseLevel < $MANA_BLVL+MAGIC_LVL*rand2(15,17)) { mesq l("Out of my experience, your level may not be enough."); + if ($GAME_STORYLINE >= 5) + mesc l("You need a base level of %d to rank up.", $MANA_BLVL+MAGIC_LVL*15), 9; } - if (JobLevel < $MANA_JLVL+MAGIC_LVL*rand(10,12)) { + if (JobLevel < $MANA_JLVL+MAGIC_LVL*rand2(10,12)) { mesq l("Out of my experience, your job may not be enough."); + if ($GAME_STORYLINE >= 5) + mesc l("You need a job level of %d to rank up.", $MANA_JLVL+MAGIC_LVL*5), 9; } - if (readparam2(bInt) < $MANA_BINT+MAGIC_LVL*rand(10,13)) { + if (readparam2(bInt) < $MANA_BINT+MAGIC_LVL*rand2(7,10)) { mesq l("Out of my experience, your base intelligence may not be enough."); + if ($GAME_STORYLINE >= 5) + mesc l("You need a job level of %d to rank up.", $MANA_BINT+MAGIC_LVL*3), 9; if (!.@q) mesc l("You should reset your stats and allocate some points at intelligence."); } |