diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-03-19 21:38:03 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-03-19 21:38:03 -0300 |
commit | 25deff9068d6b1d00ec1b2fb638944e54530cd5f (patch) | |
tree | a7d172f2cdfdc4bb968f7387af40b2f0c4d9efd3 /npc/functions/gmbot.txt | |
parent | a73db31851dcf1c0a93ea1726f1d762e50f3eb4b (diff) | |
download | serverdata-25deff9068d6b1d00ec1b2fb638944e54530cd5f.tar.gz serverdata-25deff9068d6b1d00ec1b2fb638944e54530cd5f.tar.bz2 serverdata-25deff9068d6b1d00ec1b2fb638944e54530cd5f.tar.xz serverdata-25deff9068d6b1d00ec1b2fb638944e54530cd5f.zip |
Rebirth now gives 2 points to Lightbringer (each rebirth)
Diffstat (limited to 'npc/functions/gmbot.txt')
-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; } |