summaryrefslogtreecommitdiff
path: root/npc/functions
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-07-16 15:33:49 -0300
committerJesusaves <cpntb1@ymail.com>2018-07-16 15:33:49 -0300
commit97ac6817ffdbebef3f7605e38c8a69420fa46cee (patch)
tree72de77e74b0d36bc2b5eb16e34b5919dd4531578 /npc/functions
parent01788bc76d15415a90593a9b972283765c56db43 (diff)
downloadserverdata-97ac6817ffdbebef3f7605e38c8a69420fa46cee.tar.gz
serverdata-97ac6817ffdbebef3f7605e38c8a69420fa46cee.tar.bz2
serverdata-97ac6817ffdbebef3f7605e38c8a69420fa46cee.tar.xz
serverdata-97ac6817ffdbebef3f7605e38c8a69420fa46cee.zip
Ragger Prototype
Diffstat (limited to 'npc/functions')
-rw-r--r--npc/functions/class.txt12
-rw-r--r--npc/functions/util.txt2
2 files changed, 11 insertions, 3 deletions
diff --git a/npc/functions/class.txt b/npc/functions/class.txt
index 427e32687..e10a6f399 100644
--- a/npc/functions/class.txt
+++ b/npc/functions/class.txt
@@ -25,8 +25,16 @@ function script ClassMaster {
if (getskilllv(.@CLASS) == 1 && MAGIC_LVL >= 2 && ST_TIER >= 1) goto L_T2_S0;
// Sanity check
- if (getskilllv(.@SK_T1) >= 1) mesq l("Are you using my skill?");
- if (getskilllv(.@SK_T1) >= 1) close;
+ if (getskilllv(.@CLASS) >= 1) {
+ mesn;
+ mesq l("The Warriors have three other subclasses:");
+ mesn lg("Paladin");
+ mesc l("The well-round guy, with reasonable def and attack. Approximate from the Priest.");
+ mesn lg("Berserker");
+ mesc l("The full-attack guy. Two hand swords works best!");
+ mesn lg("Tanker");
+ mesc l("The full-defense guy. Most skills require a shield.");
+ }
close;
L_SignUp:
diff --git a/npc/functions/util.txt b/npc/functions/util.txt
index de172bda6..a72d6e5fb 100644
--- a/npc/functions/util.txt
+++ b/npc/functions/util.txt
@@ -249,7 +249,7 @@ function script total_subclass {
.@i+=1;
if (MAGIC_SUBCLASS & CL_TANKER)
.@i+=1;
- if (MAGIC_SUBCLASS & CL_BERSEKER)
+ if (MAGIC_SUBCLASS & CL_BERSERKER)
.@i+=1;
if (MAGIC_SUBCLASS & CL_RANGER)
.@i+=1;