diff options
Diffstat (limited to 'npc')
-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: |