summaryrefslogtreecommitdiff
path: root/npc/003-0-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-03-27 21:53:46 -0300
committerJesusaves <cpntb1@ymail.com>2018-03-27 21:53:46 -0300
commit5b64717c2dad51140f72999cfc0a5e99656ed32c (patch)
tree37ec7adbdb26076be7613626d46b5b0ff92ba705 /npc/003-0-1
parentd63c5e50daa0a3484eb36de90d6a411ba066e46a (diff)
downloadserverdata-5b64717c2dad51140f72999cfc0a5e99656ed32c.tar.gz
serverdata-5b64717c2dad51140f72999cfc0a5e99656ed32c.tar.bz2
serverdata-5b64717c2dad51140f72999cfc0a5e99656ed32c.tar.xz
serverdata-5b64717c2dad51140f72999cfc0a5e99656ed32c.zip
Special label for when you're magicless
Diffstat (limited to 'npc/003-0-1')
-rw-r--r--npc/003-0-1/colin.txt13
-rw-r--r--npc/003-0-1/luca.txt14
2 files changed, 27 insertions, 0 deletions
diff --git a/npc/003-0-1/colin.txt b/npc/003-0-1/colin.txt
index 143fb9c89..d50a022de 100644
--- a/npc/003-0-1/colin.txt
+++ b/npc/003-0-1/colin.txt
@@ -10,6 +10,19 @@
mesn;
mesq l("I am the Wizard Mages master.");
+ if (!MAGIC_LVL) goto L_NoMagic;
+ close;
+
+L_NoMagic:
+ next;
+ mesn;
+ mesq l("Your lack of magical power is critical. I dare say, you might never in your life get access to a Mana Stone.");
+ next;
+ mesn;
+ mesq l("Besides the Magic Council, Andrei Sakar have his own Mana Stone, but I doubt he would train the likes of you, or share his Mana Stone.");
+ next;
+ mesn;
+ mesq l("Perhaps, in the city, someone knows rumors about Mana Stones and can teach you. Other than that, you're on your own.");
close;
OnInit:
diff --git a/npc/003-0-1/luca.txt b/npc/003-0-1/luca.txt
index ebd57a6a2..db58dbc92 100644
--- a/npc/003-0-1/luca.txt
+++ b/npc/003-0-1/luca.txt
@@ -10,6 +10,8 @@
mesn;
mesq l("I am the Magic Warriors master.");
+ if (!MAGIC_LVL) goto L_NoMagic;
+
if (getskilllv(SM_BASH) >= 1) mesq l("Are you using my skill?");
if (getskilllv(SM_BASH) >= 1) close;
if (!MAGIC_LVL && !is_staff()) close;
@@ -22,6 +24,18 @@
close;
+L_NoMagic:
+ next;
+ mesn;
+ mesq l("Your lack of magical power is critical. I dare say, you might never in your life get access to a Mana Stone.");
+ next;
+ mesn;
+ mesq l("Besides the Magic Council, Andrei Sakar have his own Mana Stone, but I doubt he would train the likes of you, or share his Mana Stone.");
+ next;
+ mesn;
+ mesq l("Perhaps, in the city, someone knows rumors about Mana Stones and can teach you. Other than that, you're on your own.");
+ close;
+
OnInit:
.@npcId = getnpcid(0, .name$);
setunitdata(.@npcId, UDT_HEADTOP, NPCEyes);