summaryrefslogtreecommitdiff
path: root/npc/functions/gmbot.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-05-07 11:37:19 -0300
committerJesusaves <cpntb1@ymail.com>2022-05-07 11:37:19 -0300
commit0167d08def9f6e31724fe23ce3390262c46cd902 (patch)
tree2db82e93b41bbf3ba19451b9e7b8a07b32e0a601 /npc/functions/gmbot.txt
parent6d9c9980917ee5393e090d353685f00f50b79399 (diff)
downloadserverdata-0167d08def9f6e31724fe23ce3390262c46cd902.tar.gz
serverdata-0167d08def9f6e31724fe23ce3390262c46cd902.tar.bz2
serverdata-0167d08def9f6e31724fe23ce3390262c46cd902.tar.xz
serverdata-0167d08def9f6e31724fe23ce3390262c46cd902.zip
C'mon, defeating the Sealed Moubootaur is a great deed by all rights!
Diffstat (limited to 'npc/functions/gmbot.txt')
-rw-r--r--npc/functions/gmbot.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/npc/functions/gmbot.txt b/npc/functions/gmbot.txt
index eafe19efc..5d11e5d1f 100644
--- a/npc/functions/gmbot.txt
+++ b/npc/functions/gmbot.txt
@@ -22,7 +22,7 @@ boss,45,42,0 script Lightbringer NPC_LIGHTBRINGER,{
npctalk3 l("I'm not going to touch a FLOATING sword made of unobtainum without at least knowing a bit more about it.");
end;
}
- // Determine if you are worthy (from 0 to 123)
+ // Determine if you are worthy (from 0 to 124)
if (!@lbscore)
@lbscore=matrixlb();
@@ -240,7 +240,8 @@ function matrixlb {
.@cr+=(GEMINI_WINNER ? 1 : 0);
.@cr+=(GHQ_WINNER ? 1 : 0);
.@cr+=(FORT_1ST_VISIT ? 1 : 0);
- .@cr=limit(0, .@cr, 6);
+ .@cr+=(MOUBOOTAUR_WINNER ? 1 : 0);
+ .@cr=limit(0, .@cr, 7);
.@pts+=.@cr;
// What about Doppelganger TOP 3?
@@ -259,7 +260,7 @@ function matrixlb {
if ($GAME_STORYLINE >=5)
.@pts+=1; // Should never, ever, happen
- // Max points: 101→104→114→117→123
+ // Max points: 101→104→114→117→124
return .@pts;
}