diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-10-13 17:52:28 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-10-13 17:52:28 -0300 |
commit | 791366f6fa95f6fadfb18427643104e27b15110a (patch) | |
tree | 2b76e5a46546bd76df5d9eef3b55f0cf2764bf9b /npc/009-2 | |
parent | bf0009c85d890598029c159912f5c7a76aa38d51 (diff) | |
download | serverdata-791366f6fa95f6fadfb18427643104e27b15110a.tar.gz serverdata-791366f6fa95f6fadfb18427643104e27b15110a.tar.bz2 serverdata-791366f6fa95f6fadfb18427643104e27b15110a.tar.xz serverdata-791366f6fa95f6fadfb18427643104e27b15110a.zip |
After Monster King is dead, the Scholar will give precise values for reqs.
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."); } |