diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-22 10:43:24 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-22 10:43:24 -0300 |
commit | c351742b3647b1f62ea74fa53e5de38d254e336b (patch) | |
tree | c7c29a1e1e222e421b04dcca9dba52c2a8f77aef /npc/003-0-1/hiddenwarp.txt | |
parent | 736092a43ad4e294da019989c85bfe8f92337356 (diff) | |
download | serverdata-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.txt | 21 |
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; +} |