diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-23 00:25:14 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-23 00:25:14 -0300 |
commit | 6abca8b10b9457c0730b97a28ba534860f321253 (patch) | |
tree | 552d34933362a9fc1fd3fa6679227585f0af5b3f | |
parent | 34e0b83f0e51756df9eb211277bdb8d9d3201317 (diff) | |
download | serverdata-6abca8b10b9457c0730b97a28ba534860f321253.tar.gz serverdata-6abca8b10b9457c0730b97a28ba534860f321253.tar.bz2 serverdata-6abca8b10b9457c0730b97a28ba534860f321253.tar.xz serverdata-6abca8b10b9457c0730b97a28ba534860f321253.zip |
Report on game news the current game story state, too.
-rw-r--r-- | npc/functions/news.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/npc/functions/news.txt b/npc/functions/news.txt index 94c5e552a..63283a788 100644 --- a/npc/functions/news.txt +++ b/npc/functions/news.txt @@ -372,6 +372,20 @@ function script Journalman { default: Exception(l("Invalid season: @@", season()), RB_DEFAULT|RB_SPEECH); break; } + mes ""; + switch ($GAME_STORYLINE) { + case 0: + mesc l("The Monster King Army is occupying several towns! Brave players need to group and retake them!"); + break; + case 1: + mesc l("The Monster King Army left the cities! What will happen next? Anxiety grows!"); + break; + case 2: + mesc l("The Monster King Army is attacking towns at random! Players already caused a loss of about @@ officers!", ($@MK_TEMPVAR+rand(-1,1))/5); + break; + default: + Exception(l("I do now know what this means: GS-@@-ICXN-@@", $GAME_STORYLINE, $@MK_TEMPVAR), RB_DEFAULT|RB_SPEECH); break; + } do { mes ""; |