diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-01-16 07:26:30 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-01-16 07:26:30 -0300 |
commit | aceb218f91ada33a8bdbcc650b3e84c08f071f37 (patch) | |
tree | 0f6b6840356ce2f6a21e04232a9674546f647c89 /npc/functions | |
parent | 046c5fb95dbebc52e2e381a0747c3bf7edd6fffd (diff) | |
download | serverdata-aceb218f91ada33a8bdbcc650b3e84c08f071f37.tar.gz serverdata-aceb218f91ada33a8bdbcc650b3e84c08f071f37.tar.bz2 serverdata-aceb218f91ada33a8bdbcc650b3e84c08f071f37.tar.xz serverdata-aceb218f91ada33a8bdbcc650b3e84c08f071f37.zip |
Fix typos. Lightbringer basic time is now 2~3 minutes for later in story.
(If it is still around, that is)
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/gmbot.txt | 11 |
1 files changed, 9 insertions, 2 deletions
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: |