diff options
-rw-r--r-- | npc/functions/gmbot.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/npc/functions/gmbot.txt b/npc/functions/gmbot.txt index 4cd93c5cc..e6f335a59 100644 --- a/npc/functions/gmbot.txt +++ b/npc/functions/gmbot.txt @@ -35,6 +35,7 @@ L_Today: } // Else: score > 60, 2 minutes per additional score + // TODO: If > 100, grant it for a week/month or so? rentitem Lightbringer, (120*(@lbscore-60)); dispbottom l("This live sword drafts itself to your hand. You can wield it for a while."); disablenpc .name$; @@ -179,7 +180,10 @@ function matrixlb { .@dr=limit(0, (.@dr >= 0 ? 3-.@dr : 0), 3); .@pts+=.@dr; - // Max points: 101→104 + // Rebirth (2pts per level) + .@pts+=limit(0, REBIRTH*2, 10) + + // Max points: 101→104→114 return .@pts; } |