summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2025-03-19 21:51:47 -0300
committerJesusaves <cpntb1@ymail.com>2025-03-19 21:51:47 -0300
commit373a0680ada18261ea0c1f2d5a0984d26f98a911 (patch)
treec5b32ac393115c6a1f40565d0b1f70ea2aa48cda
parent8b8d329ca3a7e78b0598a2c5f5ec0ab55b69d288 (diff)
downloadserverdata-373a0680ada18261ea0c1f2d5a0984d26f98a911.tar.gz
serverdata-373a0680ada18261ea0c1f2d5a0984d26f98a911.tar.bz2
serverdata-373a0680ada18261ea0c1f2d5a0984d26f98a911.tar.xz
serverdata-373a0680ada18261ea0c1f2d5a0984d26f98a911.zip
So new~ish players have access to skills and for a more interesting gameplay
-rw-r--r--npc/009-2/librarian.txt1
-rw-r--r--npc/functions/util.txt2
2 files changed, 3 insertions, 0 deletions
diff --git a/npc/009-2/librarian.txt b/npc/009-2/librarian.txt
index b08a71eba..6e00d3926 100644
--- a/npc/009-2/librarian.txt
+++ b/npc/009-2/librarian.txt
@@ -134,6 +134,7 @@ L_Complete:
mesc l("They were never again seen. None of them. We burnt all records about everyone here, and blamed the Monster King.");
mesc l("They must never know we had it. Their sacrifices must be forgotten. For the sake of all.");
compareandsetq General_Narrator, 7, 8;
+ tutmes l("You feel your magic power growing. You're now capable of learning a new skill in the Magic Academy.");
close;
L_Report:
diff --git a/npc/functions/util.txt b/npc/functions/util.txt
index 3ee894abb..893ebcbdf 100644
--- a/npc/functions/util.txt
+++ b/npc/functions/util.txt
@@ -860,6 +860,8 @@ function script sk_maxpoints {
.@val+=getskilllv(TMW2_SKILLPERMIT);
// Sacrificing the Mouboo: +3 MSP
.@val+=(alignment() < 0 ? 3 : 0);
+ // Additional bonus from main story
+ .@val+=(getq(General_Narrator) >= 8 ? 1 : 0);
return .@val;
}