summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-03-18 13:47:58 -0300
committerJesusaves <cpntb1@ymail.com>2021-03-18 13:47:58 -0300
commite0126417d59520132a9ac13f97a8d0af4dcc0756 (patch)
tree87b60971f8e8ed72d3528e704d33ec16326f651f
parent788f0af90040de8ae19426bc6c3389537803eb64 (diff)
downloadserverdata-e0126417d59520132a9ac13f97a8d0af4dcc0756.tar.gz
serverdata-e0126417d59520132a9ac13f97a8d0af4dcc0756.tar.bz2
serverdata-e0126417d59520132a9ac13f97a8d0af4dcc0756.tar.xz
serverdata-e0126417d59520132a9ac13f97a8d0af4dcc0756.zip
Increase Light Bringer Score Matrix to 120 points.
These 3 new points are based on world events - like Fires of Steam completion.
-rw-r--r--npc/functions/gmbot.txt10
1 files changed, 9 insertions, 1 deletions
diff --git a/npc/functions/gmbot.txt b/npc/functions/gmbot.txt
index 00b931a0a..1b70d1cb3 100644
--- a/npc/functions/gmbot.txt
+++ b/npc/functions/gmbot.txt
@@ -245,7 +245,15 @@ function matrixlb {
// Rebirth (2pts per level)
.@pts+=limit(0, REBIRTH*2, 10);
- // Max points: 101→104→114→117
+ // World Story Bonus
+ if ($GAME_STORYLINE > 3 && $MK_TEMPVAR >= 12)
+ .@pts+=1;
+ if ($FIRESOFSTEAM >= 10)
+ .@pts+=1;
+ if ($GAME_STORYLINE >=5)
+ .@pts+=1; // Should never, ever, happen
+
+ // Max points: 101→104→114→117→120
return .@pts;
}