diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-05-17 14:12:07 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-05-17 14:12:07 -0300 |
commit | 3e10cc3ef33120cfead846652c68d154a8a699ea (patch) | |
tree | ab39be53ecdaaa48cc6a384aa2eade59cdf222fa | |
parent | 4bcefd14ac0a97b27e8b6a44cfd838b8c34f1ba1 (diff) | |
download | serverdata-3e10cc3ef33120cfead846652c68d154a8a699ea.tar.gz serverdata-3e10cc3ef33120cfead846652c68d154a8a699ea.tar.bz2 serverdata-3e10cc3ef33120cfead846652c68d154a8a699ea.tar.xz serverdata-3e10cc3ef33120cfead846652c68d154a8a699ea.zip |
Sketch for Aurora - I'm saving because I'll change rules
-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; } |