diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-26 03:26:25 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-26 03:26:25 -0200 |
commit | ccc18da04b82cc850054bc0d00ba6cda1ae5f761 (patch) | |
tree | ae983638459d93c5b25c52563fa46628da0e4fab /npc/009-2 | |
parent | b9bb77adf044c9301ad3b28a7305391a9266d9a5 (diff) | |
download | serverdata-ccc18da04b82cc850054bc0d00ba6cda1ae5f761.tar.gz serverdata-ccc18da04b82cc850054bc0d00ba6cda1ae5f761.tar.bz2 serverdata-ccc18da04b82cc850054bc0d00ba6cda1ae5f761.tar.xz serverdata-ccc18da04b82cc850054bc0d00ba6cda1ae5f761.zip |
Fix a bunch of typos and comments
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) |