diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-27 22:16:35 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-27 22:16:35 -0300 |
commit | b58af0a364191204dbc1d62f863fe89d1af526b8 (patch) | |
tree | 3d1651c8e21d585c2ba311f7a2367d0f23e12629 /npc | |
parent | f9874660c0dced7699612cf44bc66f8c2d524324 (diff) | |
download | serverdata-b58af0a364191204dbc1d62f863fe89d1af526b8.tar.gz serverdata-b58af0a364191204dbc1d62f863fe89d1af526b8.tar.bz2 serverdata-b58af0a364191204dbc1d62f863fe89d1af526b8.tar.xz serverdata-b58af0a364191204dbc1d62f863fe89d1af526b8.zip |
Basic class system, it can be shown with @setskill
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-0-1/colin.txt | 2 | ||||
-rw-r--r-- | npc/003-0-1/luca.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/003-0-1/colin.txt b/npc/003-0-1/colin.txt index 7862e38a9..439188ad5 100644 --- a/npc/003-0-1/colin.txt +++ b/npc/003-0-1/colin.txt @@ -11,7 +11,7 @@ mesn; mesq l("I am the Wizard Mages master."); if (!MAGIC_LVL) goto L_NoMagic; - if (getskilllv("Magic Warrior")) close; + if (getskilllv(MAGIC_WARRIOR)) close; close; L_NoMagic: diff --git a/npc/003-0-1/luca.txt b/npc/003-0-1/luca.txt index ce33c9f3a..a9c07f678 100644 --- a/npc/003-0-1/luca.txt +++ b/npc/003-0-1/luca.txt @@ -11,7 +11,7 @@ mesn; mesq l("I am the Magic Warriors master."); if (!MAGIC_LVL) goto L_NoMagic; - if (getskilllv("Wizard Mage")) close; + if (getskilllv(WIZARD_MAGE)) close; if (getskilllv(SM_BASH) >= 1) mesq l("Are you using my skill?"); if (getskilllv(SM_BASH) >= 1) close; |