summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2024-01-22 10:32:30 -0300
committerJesusaves <cpntb1@ymail.com>2024-01-22 10:32:30 -0300
commitc0c449a9ae9de6f168c56f057c988addc5159159 (patch)
tree392c700fbb4c3fd61610c8a2faa16f2b0f762244 /npc
parent15ebab01542b54515b6623bfde790e9f36091ff2 (diff)
downloadserverdata-c0c449a9ae9de6f168c56f057c988addc5159159.tar.gz
serverdata-c0c449a9ae9de6f168c56f057c988addc5159159.tar.bz2
serverdata-c0c449a9ae9de6f168c56f057c988addc5159159.tar.xz
serverdata-c0c449a9ae9de6f168c56f057c988addc5159159.zip
Add current storyline to the game options, because some ppl don't read the news
Diffstat (limited to 'npc')
-rw-r--r--npc/functions/scoreboards.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/npc/functions/scoreboards.txt b/npc/functions/scoreboards.txt
index aa2e42f18..7a7ba2e4a 100644
--- a/npc/functions/scoreboards.txt
+++ b/npc/functions/scoreboards.txt
@@ -473,6 +473,16 @@ function script HallOfGame {
.@s$=(season() == SUMMER ? l("Summer") : .@s$);
.@s$=(season() == SPRING ? l("Spring") : .@s$);
mes l("Season: %s", .@s$);
+ switch ($GAME_STORYLINE) {
+ case 0: .@a$=l("Liberation Day"); break; // Default
+ case 1: .@a$=l("Interlude"); break; // set by npc/023-2/mk.txt
+ case 2: .@a$=l("Siege"); break; // set by npc/functions/mkbot.txt
+ case 3: .@a$=l("Strike Back"); break; // set by npc/functions/mkbot.txt
+ case 4: .@a$=l("The World's Curse"); break; // set by npc/029-9/boss.txt
+ case 5: .@a$=l("Moubootaur's Seal"); break; // set by npc/026-7/boss.txt
+ default: .@a$=l("Bug please report me"); break;
+ }
+ mes l("Current Act: %d - %s", $GAME_STORYLINE, .@a$);
// weather ; game time ; world story ; etc.
mes "";
if (getvaultid())