diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-01-16 07:28:19 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-01-16 07:28:19 -0300 |
commit | bc2a647c593d9bd741bd654676081651e28f19a0 (patch) | |
tree | 9642959b263650f26efa19792bcd9e4c0642e356 | |
parent | aceb218f91ada33a8bdbcc650b3e84c08f071f37 (diff) | |
download | serverdata-bc2a647c593d9bd741bd654676081651e28f19a0.tar.gz serverdata-bc2a647c593d9bd741bd654676081651e28f19a0.tar.bz2 serverdata-bc2a647c593d9bd741bd654676081651e28f19a0.tar.xz serverdata-bc2a647c593d9bd741bd654676081651e28f19a0.zip |
Each successful Fortress Town takedown gives +1 second to lightbringer
(per score, for a total +2 minutes/siege)
-rw-r--r-- | npc/functions/gmbot.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/npc/functions/gmbot.txt b/npc/functions/gmbot.txt index e6b97ce66..6029fd873 100644 --- a/npc/functions/gmbot.txt +++ b/npc/functions/gmbot.txt @@ -50,8 +50,12 @@ L_Today: if ($GAME_STORYLINE == 4) .@btime+=30; // +30 seconds for stage 4 else if ($GAME_STORYLINE >= 5) - .@btime+=60; // +60 seconds for stage 5 - + .@btime+=60; // +60 seconds for stage 5 (but it was not yet claimed? o.o) + + // Each siege gives +1 second per point + if ($GAME_STORYLINE < 5) + .@btime+=$MK_TEMPVAR; + rentitem Lightbringer, (.@btime*(@lbscore-60)); dispbottom l("This live sword drafts itself to your hand. You can wield it for a while."); disablenpc .name$; |