diff options
Diffstat (limited to 'npc/003-1')
-rw-r--r-- | npc/003-1/events.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/npc/003-1/events.txt b/npc/003-1/events.txt index 5e8580376..a28007f9b 100644 --- a/npc/003-1/events.txt +++ b/npc/003-1/events.txt @@ -308,6 +308,33 @@ function handleStPatrick { ///////////////////////////////////////////////////////////////////////////////// function handleAurora { + // Define script variables + .@WHAT$=l("event"); + + // Fill them with specific details, if available + if ($EVENT$ == "Expo") { + .@WHAT$=l("world expo"); + } else if ($EVENT$ == "Fishing") { + .@WHAT$=l("golden fish hunt"); + } else if ($EVENT$ == "Kamelot") { + .@WHAT$=l("kamelot raid"); + } else if ($EVENT$ == "Regnum") { + .@WHAT$=l("regnum's blessing"); + } + + mesn; + mesq l("Hello! I am Aurora, and I oversee the %s!"); + next; + mesn; + mesq l("So, how can I help you today?"); + next; + select + l("Event Details"), + l("Event Rankings"), + rif(true, l("Current scoreboard")), + l("Claim rewards"), + l("That's all, thanks!"); + mes ""; return; } |