diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-0-1/colin.txt | 1 | ||||
-rw-r--r-- | npc/003-1/jakod.txt | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/npc/003-0-1/colin.txt b/npc/003-0-1/colin.txt index 5918b360a..8bac9f960 100644 --- a/npc/003-0-1/colin.txt +++ b/npc/003-0-1/colin.txt @@ -12,6 +12,7 @@ mesq l("I am the Wizard Mages master."); if (!MAGIC_LVL) goto L_NoMagic; if (getskilllv(MAGIC_WARRIOR) && !is_admin()) close; + // will grant MG_FIREBALL probably, or MG_THUNDERSTORM, or we will figure something out. close; L_NoMagic: diff --git a/npc/003-1/jakod.txt b/npc/003-1/jakod.txt index 020234399..5b8c334ec 100644 --- a/npc/003-1/jakod.txt +++ b/npc/003-1/jakod.txt @@ -20,6 +20,8 @@ menu rif(!MAGIC_LVL, l("How do I get magic?")), L_HowTo, rif(MAGIC_LVL >= 1 && !getskilllv(EVOL_MASS_PROVOKE), l("Can you teach me a basic tier 1 magic skill?")), L_Provoke, + //rif(MAGIC_LVL >= 2 && !getskilllv(NV_FIRSTAID), + //rif(MAGIC_LVL >= 3 && !getskilllv(AL_TELEPORT), l("Good bye."), -; close; |