diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-12-16 11:54:39 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-12-16 11:54:39 -0300 |
commit | c61b681d512780efce007e9ea617a65f57b691f7 (patch) | |
tree | 56e0c2d6fa60531472173ce0624ce4113c2d717f | |
parent | e774069902d8c673db6186b6b7a673004d215bdc (diff) | |
download | serverdata-c61b681d512780efce007e9ea617a65f57b691f7.tar.gz serverdata-c61b681d512780efce007e9ea617a65f57b691f7.tar.bz2 serverdata-c61b681d512780efce007e9ea617a65f57b691f7.tar.xz serverdata-c61b681d512780efce007e9ea617a65f57b691f7.zip |
Lightbringer is not THAT amazing. Double hold time.
Busy time: +100% -> +67%
(10 points => 10m/20m -> 20m/30m)
-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 a92dca53c..dcab8acb2 100644 --- a/npc/functions/gmbot.txt +++ b/npc/functions/gmbot.txt @@ -34,11 +34,11 @@ L_Today: end; } - // Else: score > 60, 1 minute per additional score - rentitem Lightbringer, (60*(@lbscore-60)); + // Else: score > 60, 2 minutes per additional score + rentitem Lightbringer, (120*(@lbscore-60)); dispbottom l("This live sword drafts itself to your hand. You can wield it for a while."); disablenpc .name$; - .busy=gettimetick(2)+(60*(@lbscore-60))*2; + .busy=gettimetick(2)+(120*(@lbscore-60))*3/2; end; OnInit: |