diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/news.txt | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/npc/functions/news.txt b/npc/functions/news.txt index 6904eb2b8..a4bfe3504 100644 --- a/npc/functions/news.txt +++ b/npc/functions/news.txt @@ -363,8 +363,19 @@ function script GameNews { } function script EventHelp { + ("Enable Valentine Day"), + ("Enable St. Patrick Day"), + ("Enable Easter"), + ("Enable Worker's Day"), + ("Enable Thanksgiving"), + ("Enable Event Horizon"), + ("Enable Christmas"), + ("Enable Demure's Birthday"), + ("[FY] Enable Kamelot"), if ($EVENT$ == "") return; + if ($EVENT$ == "Kamelot") { + ///////////////////////////////////////////////////////////////////////// mesc ".:: " + l("Kamelot Raid") + " ::.", 2; mes ""; mes l("Group togheter your guild and challenge the evil power,"); @@ -373,8 +384,34 @@ function script EventHelp { mes ""; mes l("Is your guild strong enough to give Arthur at least good nights sleep?"); mesc l("Location: Kamelot Castle, west of Hurnscald."), 3; + ///////////////////////////////////////////////////////////////////////// + } else if ($EVENT$ == "Valentine") { + mesc ".:: " + l("Valentine Day") + " ::.", 2; + mes ""; + mes l("It is time to send %s to your beloved ones!", getitemlink(BoxOfChocolates)); + mes l("Touch Soul Menhir and visit the Valentine's Island."); + mes l("Collect chocolate and love letters from the fluffies"); + mes l("and have Demure to send them to those you admire!"); + mes l("Don't forget to collect and eat any chocolate sent to you, too!"); + mes ""; + mes l("Witness, the power of love!"); + mesc l("Location: Valentine Island, access by Soul Menhir."), 3; + ///////////////////////////////////////////////////////////////////////// + } else if ($EVENT$ == "Easter") { + mesc ".:: " + l("Easter") + " ::.", 2; + mes ""; + mes l("The Enchanted Forest is now open to visitors!"); + mes l("Collect easter eggs, and exchange them with Lilica!"); + mes ""; + mes l("Compete for the first place, and remember to exchange silver"); + mes l("easter eggs for more useful things!"); + mes ""; + mes l("Who will collect the most?!"); + mesc l("Location: Enchanted Forest, access by Soul Menhir."), 3; + ///////////////////////////////////////////////////////////////////////// } else { mesc l("There's no help available for this event."); + ///////////////////////////////////////////////////////////////////////// } next; return; |