summaryrefslogtreecommitdiff
path: root/npc/003-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-05-17 14:12:07 -0300
committerJesusaves <cpntb1@ymail.com>2020-05-17 14:12:07 -0300
commit3e10cc3ef33120cfead846652c68d154a8a699ea (patch)
treeab39be53ecdaaa48cc6a384aa2eade59cdf222fa /npc/003-1
parent4bcefd14ac0a97b27e8b6a44cfd838b8c34f1ba1 (diff)
downloadserverdata-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
Diffstat (limited to 'npc/003-1')
-rw-r--r--npc/003-1/events.txt27
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;
}