summaryrefslogtreecommitdiff
path: root/npc/functions/soul_menhir.txt
diff options
context:
space:
mode:
authorjesusalva <cpntb1@ymail.com>2018-03-03 20:58:18 -0300
committerjesusalva <cpntb1@ymail.com>2018-03-03 20:58:18 -0300
commit697ec91d5a999310fbbdf5bace6d928b5c27d698 (patch)
tree2984da7f209362a0e7f8d9f82e7d75f7fa72585d /npc/functions/soul_menhir.txt
parent85e148f67639453bfaf49a1e65c203fe63f6c465 (diff)
downloadserverdata-697ec91d5a999310fbbdf5bace6d928b5c27d698.tar.gz
serverdata-697ec91d5a999310fbbdf5bace6d928b5c27d698.tar.bz2
serverdata-697ec91d5a999310fbbdf5bace6d928b5c27d698.tar.xz
serverdata-697ec91d5a999310fbbdf5bace6d928b5c27d698.zip
Easter event control.
Diffstat (limited to 'npc/functions/soul_menhir.txt')
-rw-r--r--npc/functions/soul_menhir.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/npc/functions/soul_menhir.txt b/npc/functions/soul_menhir.txt
index 838b5d868..865d5a6a1 100644
--- a/npc/functions/soul_menhir.txt
+++ b/npc/functions/soul_menhir.txt
@@ -5,6 +5,7 @@ function script SoulMenhir {
menu
l("Touch it."), L_Bind,
rif($@GM_EVENT, l("Send soul to the Mana Plane for GM events")), L_Aeros,
+ rif($EVENT$ == "Easter", l("[Easter] Send soul to the Mana Forest!")), L_Easter,
l("Leave it alone."), L_Return;
//L_Towel:
@@ -43,6 +44,12 @@ L_Aeros:
message strcharinfo(0), l("You are now at the Mana Plane of Existence, at the Floating Island of Aeros.");
close;
+L_Easter:
+ if ($EVENT$ != "Easter") goto L_DontPanic;
+ warp "001-4", 151, 157;
+ message strcharinfo(0), l("You are now at the Mana Plane of Existence, at the Magical Forest.");
+ close;
+
L_DontPanic:
message strcharinfo(0), l("(A strange barrier keeps you from touching the stone at this time.)");
goto L_Return;