diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-05-06 23:34:38 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-05-06 23:34:38 -0300 |
commit | 0e6d7ab478c4eac3e5300c20d23d5d26511ac6c1 (patch) | |
tree | 1b73898d1509b6cf05609c40e6d92f50d9d9743a | |
parent | d61e5ee20a7e7ac8605c33f9ca3bf5e4cc8cc541 (diff) | |
download | serverdata-0e6d7ab478c4eac3e5300c20d23d5d26511ac6c1.tar.gz serverdata-0e6d7ab478c4eac3e5300c20d23d5d26511ac6c1.tar.bz2 serverdata-0e6d7ab478c4eac3e5300c20d23d5d26511ac6c1.tar.xz serverdata-0e6d7ab478c4eac3e5300c20d23d5d26511ac6c1.zip |
Raise max points on Lightbringer from 120 to 123.
I hope someone claims it, because seriously.
-rw-r--r-- | npc/functions/gmbot.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/gmbot.txt b/npc/functions/gmbot.txt index cbcd79917..eafe19efc 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 101) + // Determine if you are worthy (from 0 to 123) if (!@lbscore) @lbscore=matrixlb(); @@ -240,7 +240,7 @@ function matrixlb { .@cr+=(GEMINI_WINNER ? 1 : 0); .@cr+=(GHQ_WINNER ? 1 : 0); .@cr+=(FORT_1ST_VISIT ? 1 : 0); - .@cr=limit(0, .@cr / 2, 3); + .@cr=limit(0, .@cr, 6); .@pts+=.@cr; // What about Doppelganger TOP 3? @@ -259,7 +259,7 @@ function matrixlb { if ($GAME_STORYLINE >=5) .@pts+=1; // Should never, ever, happen - // Max points: 101→104→114→117→120 + // Max points: 101→104→114→117→123 return .@pts; } |