diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-04-17 06:21:35 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-04-17 06:21:35 -0300 |
commit | bbbb4a68efcc73ddb6520186a65346ed59a4dab5 (patch) | |
tree | e519280a34f2342735a7540c2cb49543f62f88a0 /npc/006-3/grotto.txt | |
parent | 826837406594162ccc888726606900fc9398849c (diff) | |
download | serverdata-bbbb4a68efcc73ddb6520186a65346ed59a4dab5.tar.gz serverdata-bbbb4a68efcc73ddb6520186a65346ed59a4dab5.tar.bz2 serverdata-bbbb4a68efcc73ddb6520186a65346ed59a4dab5.tar.xz serverdata-bbbb4a68efcc73ddb6520186a65346ed59a4dab5.zip |
Final patches (Groata Grotto)
Diffstat (limited to 'npc/006-3/grotto.txt')
-rw-r--r-- | npc/006-3/grotto.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/npc/006-3/grotto.txt b/npc/006-3/grotto.txt new file mode 100644 index 000000000..a58d8bffc --- /dev/null +++ b/npc/006-3/grotto.txt @@ -0,0 +1,23 @@ +// TMW2 Script +// Author: +// Jesusalva + +006-3,41,36,0 script Sign#0063PI NPC_SWORDS_SIGN,{ + mesc l("*the text is too faded out to read*"); + close; + +OnInit: + .sex = G_OTHER; + .distance = 3; + end; +} + +// Effective warp +006-3,40,35,0 script Magic Barrier#Bug63 NPC_HIDDEN,0,0,{ + end; + +OnTouch: + warp "006-5", 49, 53; + //dispbottom l("This area is not yet ready. Please use the portal to the right instead."); + end; +} |