summaryrefslogtreecommitdiff
path: root/npc/003-0-1
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
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')
-rw-r--r--npc/003-0-1/_import.txt1
-rw-r--r--npc/003-0-1/hiddenwarp.txt21
2 files changed, 22 insertions, 0 deletions
diff --git a/npc/003-0-1/_import.txt b/npc/003-0-1/_import.txt
index 5aa9264e7..0d04be190 100644
--- a/npc/003-0-1/_import.txt
+++ b/npc/003-0-1/_import.txt
@@ -3,6 +3,7 @@
"npc/003-0-1/_warps.txt",
"npc/003-0-1/audsbel.txt",
"npc/003-0-1/guards.txt",
+"npc/003-0-1/hiddenwarp.txt",
"npc/003-0-1/maxime.txt",
"npc/003-0-1/professor.txt",
"npc/003-0-1/researcher.txt",
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;
+}