diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-05-15 14:20:45 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-05-15 14:20:45 -0300 |
commit | fafd78fb618779b6acf67d015865c67d1462352e (patch) | |
tree | 09de169ebdd96151b526768b79e487bda1b945d6 /npc | |
parent | 497c820aa284f88a4d553a73dcfd92d0d9cc87a5 (diff) | |
download | serverdata-fafd78fb618779b6acf67d015865c67d1462352e.tar.gz serverdata-fafd78fb618779b6acf67d015865c67d1462352e.tar.bz2 serverdata-fafd78fb618779b6acf67d015865c67d1462352e.tar.xz serverdata-fafd78fb618779b6acf67d015865c67d1462352e.zip |
Document Thanksgiving and Christmas.
With this, every ML event is now documented.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/news.txt | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/npc/functions/news.txt b/npc/functions/news.txt index f042da6b7..1cdb58aaa 100644 --- a/npc/functions/news.txt +++ b/npc/functions/news.txt @@ -424,13 +424,36 @@ function script EventHelp { mes l("Happy %s!", "@@https://en.wikipedia.org/wiki/International_Workers%27_Day|"+l("international worker day")+"@@"); mesc l("Location: Worker's Cave, access by Soul Menhir."), 3; ///////////////////////////////////////////////////////////////////////// + } else if ($EVENT$ == "Thanksgiving") { + mesc ".:: " + l("Thanksgiving") + " ::.", 2; + mes ""; + mes l("It has been a great year, and the TMW2 Team would like to"); + mes l("give everyone gifts for spending so much time with us %%l"); + mes ""; + mes l("Every day you login, you'll be able to spin a card."); + mes l("the card will determine your gift - the more cards you spin,"); + mes l("the better your chances to get the best cards."); + mes ""; + mes l("So long, and thanks for all the fish!"); + mesc l("Location: Daily Login."), 3; + ///////////////////////////////////////////////////////////////////////// + } else if ($EVENT$ == "Christmas") { + mesc ".:: " + l("Christmas") + " ::.", 2; + mes ""; + mes l("By far, the most important holiday on Moubootaur Legends."); + mes l("Visit the Christmas Workshop, and talk to the chief in charge."); + mes ""; + mes l("Seems like they're having difficulty handling the demand, and"); + mes l("need help to send gifts to everyone! Compete for scoreboards,"); + mes l("but remember: Rewards will also be based on everyone's progress!"); + mes ""; + mes l("Merry Christmas, and a happy new year! \o/"); + mesc l("Location: Christmas Workshop, Romantic Field, south of Nivalis."), 3; + ///////////////////////////////////////////////////////////////////////// } else { mesc l("There's no help available for this event."); ///////////////////////////////////////////////////////////////////////// } - ("Enable Thanksgiving"), - ("Enable Event Horizon"), - ("Enable Christmas"), next; return; } |