From aceb218f91ada33a8bdbcc650b3e84c08f071f37 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sat, 16 Jan 2021 07:26:30 -0300 Subject: Fix typos. Lightbringer basic time is now 2~3 minutes for later in story. (If it is still around, that is) --- npc/functions/gmbot.txt | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'npc/functions') diff --git a/npc/functions/gmbot.txt b/npc/functions/gmbot.txt index d008f9a7c..e6b97ce66 100644 --- a/npc/functions/gmbot.txt +++ b/npc/functions/gmbot.txt @@ -45,10 +45,17 @@ L_Today: if (@lbscore > 110*3) @lbscore*=2; - rentitem Lightbringer, (120*(@lbscore-60)); + // Basic wield time: 2 minutes per point + .@btime=120; + if ($GAME_STORYLINE == 4) + .@btime+=30; // +30 seconds for stage 4 + else if ($GAME_STORYLINE >= 5) + .@btime+=60; // +60 seconds for stage 5 + + rentitem Lightbringer, (.@btime*(@lbscore-60)); dispbottom l("This live sword drafts itself to your hand. You can wield it for a while."); disablenpc .name$; - .busy=gettimetick(2)+(120*(@lbscore-60))*3/2; + .busy=gettimetick(2)+(.@btime*(@lbscore-60))*3/2; end; OnInit: -- cgit v1.2.3-70-g09d2