diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-04-17 00:59:32 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-04-17 00:59:32 -0300 |
commit | 71ca63db4d154e34a2124c047e53ece1e8cc1dcd (patch) | |
tree | cc38304a9cbe96eb277d1d931b409ccf91afe62a /npc/006-4-1 | |
parent | 7577a9babf553929845d97d0555114a76ffe887d (diff) | |
download | serverdata-71ca63db4d154e34a2124c047e53ece1e8cc1dcd.tar.gz serverdata-71ca63db4d154e34a2124c047e53ece1e8cc1dcd.tar.bz2 serverdata-71ca63db4d154e34a2124c047e53ece1e8cc1dcd.tar.xz serverdata-71ca63db4d154e34a2124c047e53ece1e8cc1dcd.zip |
Updates to Abandoned Island
Diffstat (limited to 'npc/006-4-1')
-rw-r--r-- | npc/006-4-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/006-4-1/_warps.txt | 2 | ||||
-rw-r--r-- | npc/006-4-1/painting.txt | 32 |
3 files changed, 34 insertions, 1 deletions
diff --git a/npc/006-4-1/_import.txt b/npc/006-4-1/_import.txt index e218adf14..bdd19d693 100644 --- a/npc/006-4-1/_import.txt +++ b/npc/006-4-1/_import.txt @@ -2,3 +2,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/006-4-1/_mobs.txt", "npc/006-4-1/_warps.txt", +"npc/006-4-1/painting.txt", diff --git a/npc/006-4-1/_warps.txt b/npc/006-4-1/_warps.txt index 24ae1b116..c248eefbe 100644 --- a/npc/006-4-1/_warps.txt +++ b/npc/006-4-1/_warps.txt @@ -15,7 +15,7 @@ OnTouch: OnTouch: slide 85,103; end; } -006-4-1,58,61,0 warp #006-4-1_58_61 6,0,006-4,95,99 +006-4-1,58,61,0 warp #006-4-1_58_61 6,0,006-4,95,100 006-4-1,88,53,0 script #006-4-1_88_53 NPC_HIDDEN,0,1,{ end; OnTouch: diff --git a/npc/006-4-1/painting.txt b/npc/006-4-1/painting.txt new file mode 100644 index 000000000..8a3cfb1d5 --- /dev/null +++ b/npc/006-4-1/painting.txt @@ -0,0 +1,32 @@ +// TMW2 Script +// Author: +// Jesusalva + +006-4-1,59,29,0 script #jakPortrait1 NPC_NO_SPRITE,{ + .@q=getq(General_EasterEggs); + + if (!(.@q & EE_JAK1)) { + setq General_EasterEggs, .@q|EE_JAK1; + dispbottom l("For finding an Easter Egg, you got Strange Coins!"); + getitem StrangeCoin, 1; + } + mesc ".:: " + l("Researcher Jak's Residence") + " ::."; + mes ""; + mesc l("And his sister,"); + mes ""; + mesc ".:: " + l("Researcher Alyta's Residence") + " ::."; + close; + +OnInit: + .distance=2; + end; +} + +006-4-1,24,53,0 script #jakWestWind NPC_HIDDEN,0,0,{ + end; + +OnTouch: + dispbottom l("This passage is still sealed."); + end; +} + |