diff options
Diffstat (limited to 'npc/011-1/manastone.txt')
-rw-r--r-- | npc/011-1/manastone.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/011-1/manastone.txt b/npc/011-1/manastone.txt index 0137e342a..711cf44b5 100644 --- a/npc/011-1/manastone.txt +++ b/npc/011-1/manastone.txt @@ -34,9 +34,9 @@ L_NotWorthy: L_Level: if (MAGIC_LVL == 0 && readparam(bInt) >= 30 && BaseLevel >= 40 && JobLevel >= 10 && readparam(Sp) == readparam(MaxSp)) goto L_LevelUp; + if (MAGIC_LVL == 1 && readparam(bInt) >= 60 && BaseLevel >= 60 && JobLevel >= 30 && readparam(Sp) == readparam(MaxSp)) goto L_LevelUp; // Everything below this line is garbage - if (MAGIC_LVL == 1 && readparam(bInt) >= 60 && BaseLevel >= 60 && JobLevel >= 30 && readparam(Sp) == readparam(MaxSp)) goto L_LevelUp; if (MAGIC_LVL == 2 && readparam(bInt) >= 90 && BaseLevel >= 80 && JobLevel >= 50 && readparam(Sp) == readparam(MaxSp)) goto L_LevelUp; if (MAGIC_LVL == 3 && readparam(bInt) >= 120 && BaseLevel >= 100 && JobLevel >= 70 && readparam(Sp) == readparam(MaxSp)) goto L_LevelUp; if (MAGIC_LVL == 4 && readparam(bInt) >= 150 && BaseLevel >= 120 && JobLevel >= 90 && readparam(Sp) == readparam(MaxSp)) goto L_LevelUp; @@ -51,6 +51,8 @@ L_NotWorthy2: if (is_gm()) close; percentheal -20, -50; npctalk3 l("You are not worthy!"); + if (MAGIC_LVL == 0) + dispbottom l("I should train my intelligence, have full MP, and don't neglect even Job Level."); end; L_LevelUp: |