diff options
-rw-r--r-- | npc/011-1/auldsbel.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/npc/011-1/auldsbel.txt b/npc/011-1/auldsbel.txt index f5931017..5a37dbe9 100644 --- a/npc/011-1/auldsbel.txt +++ b/npc/011-1/auldsbel.txt @@ -1,6 +1,6 @@ 011-1,50,68,0 script Auldsbel#_M NPC168,{ - @mexp = MAGIC_EXPERIENCE & 65535; + @mexp = MAGIC_EXP; @Q_STATUS_INITIAL = 0; @Q_STATUS_POSTINTRO = 1; @@ -1065,8 +1065,10 @@ L_stu_start: if (@mexp < 200) goto L_Notready; mes "[Auldsbel the Wizard]"; mes "\"Next, I shall teach you a higher-level transmutation spell.\""; - if (getskilllv(SKILL_MAGIC) < 2) - mes "\"Beware, for you will not be able to use it yet; you will first have to gain a greater understanding of magic overall.\""; + if (getskilllv(SKILL_MAGIC) < 2) { + mes "\"Thinking well, you will not be able to use it yet; you will first have to gain a greater understanding of magic overall.\""; + close; + } next; mes "[Auldsbel the Wizard]"; mes "\"Bring me ten bug legs, and I will reveal its invocation to you.\""; |