summaryrefslogtreecommitdiff
path: root/npc/003-0-1/hiddenwarp.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-07-22 10:43:24 -0300
committerJesusaves <cpntb1@ymail.com>2019-07-22 10:43:24 -0300
commitc351742b3647b1f62ea74fa53e5de38d254e336b (patch)
treec7c29a1e1e222e421b04dcca9dba52c2a8f77aef /npc/003-0-1/hiddenwarp.txt
parent736092a43ad4e294da019989c85bfe8f92337356 (diff)
downloadserverdata-c351742b3647b1f62ea74fa53e5de38d254e336b.tar.gz
serverdata-c351742b3647b1f62ea74fa53e5de38d254e336b.tar.bz2
serverdata-c351742b3647b1f62ea74fa53e5de38d254e336b.tar.xz
serverdata-c351742b3647b1f62ea74fa53e5de38d254e336b.zip
Easter Egg
Diffstat (limited to 'npc/003-0-1/hiddenwarp.txt')
-rw-r--r--npc/003-0-1/hiddenwarp.txt21
1 files changed, 21 insertions, 0 deletions
diff --git a/npc/003-0-1/hiddenwarp.txt b/npc/003-0-1/hiddenwarp.txt
new file mode 100644
index 000000000..d6f339b58
--- /dev/null
+++ b/npc/003-0-1/hiddenwarp.txt
@@ -0,0 +1,21 @@
+// TMW2 Script
+// Author:
+// Jesusalva
+// Easter Egg for Hello World player
+// TODO: In future, check player direction
+
+003-0-1,21,24,0 script #MSchoolRoof NPC_HIDDEN,0,0,{
+ end;
+
+OnTouch:
+ warp "003-1", 49, 24;
+ .@q=getq(General_EasterEggs);
+
+ if (!(.@q & EE_MAGICSCHOOL)) {
+ setq General_EasterEggs, .@q|EE_MAGICSCHOOL;
+ dispbottom l("For finding an Easter Egg, you got Strange Coins!");
+ getitem StrangeCoin, 3;
+ }
+
+ end;
+}