summaryrefslogtreecommitdiff
path: root/npc/functions
diff options
context:
space:
mode:
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;