diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-04-16 03:11:02 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-04-16 03:11:02 -0300 |
commit | 72911cb6fa70a9498f2c783a472f90d2c7d9d546 (patch) | |
tree | c40eaf1395020325726e47b4420c74ac1fca3f33 /npc/006-3 | |
parent | cf6f23636fc842574fbc5e626c1dd06a7eff98fc (diff) | |
download | serverdata-72911cb6fa70a9498f2c783a472f90d2c7d9d546.tar.gz serverdata-72911cb6fa70a9498f2c783a472f90d2c7d9d546.tar.bz2 serverdata-72911cb6fa70a9498f2c783a472f90d2c7d9d546.tar.xz serverdata-72911cb6fa70a9498f2c783a472f90d2c7d9d546.zip |
This should include 006-2 Piou Isles in system
Diffstat (limited to 'npc/006-3')
-rw-r--r-- | npc/006-3/_import.txt | 3 | ||||
-rw-r--r-- | npc/006-3/core.txt | 15 | ||||
-rw-r--r-- | npc/006-3/piouisle.txt | 24 | ||||
-rw-r--r-- | npc/006-3/warpcandorbattle.txt | 27 |
4 files changed, 69 insertions, 0 deletions
diff --git a/npc/006-3/_import.txt b/npc/006-3/_import.txt index c5d479086..95a6b5c5c 100644 --- a/npc/006-3/_import.txt +++ b/npc/006-3/_import.txt @@ -2,3 +2,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/006-3/_mobs.txt", "npc/006-3/_warps.txt", +"npc/006-3/core.txt", +"npc/006-3/piouisle.txt", +"npc/006-3/warpcandorbattle.txt", diff --git a/npc/006-3/core.txt b/npc/006-3/core.txt new file mode 100644 index 000000000..ca5a6f9ca --- /dev/null +++ b/npc/006-3/core.txt @@ -0,0 +1,15 @@ +// TMW2 Script +// Author: +// Jesusalva + +006-3,46,26,0 script Magic Barrier#0063 NPC_HIDDEN,0,0,{ + end; + +OnTouch: + //warp "006-3", 49, 52; + specialeffect(5000, SELF, .name$); + dispbottom l("The power which lies in Candor rejects your strength."); + sleep2(3000); + specialeffect(5002, SELF, .name$); + end; +} diff --git a/npc/006-3/piouisle.txt b/npc/006-3/piouisle.txt new file mode 100644 index 000000000..110e9f87c --- /dev/null +++ b/npc/006-3/piouisle.txt @@ -0,0 +1,24 @@ +// 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,66,62,0 script Magic Barrier#Pi NPC_HIDDEN,0,0,{ + end; + +OnTouch: + //warp "006-2", 49, 53; + //dispbottom l("Please use the warp to the right"); + dispbottom l("This area is not yet ready. Please use the portal to the right instead."); + end; +} diff --git a/npc/006-3/warpcandorbattle.txt b/npc/006-3/warpcandorbattle.txt new file mode 100644 index 000000000..a4528381f --- /dev/null +++ b/npc/006-3/warpcandorbattle.txt @@ -0,0 +1,27 @@ +// TMW2 Script +// Author: +// Crazyfefe +// Jesusalva + + +006-3,53,36,0 script Sign#0060CF NPC_SWORDS_SIGN,{ + mesc l("To the courageous, thy foe is rancorous."); + close; + +OnInit: + .sex = G_OTHER; + .distance = 3; + end; +} + +// Effective warp +006-3,54,35,0 script Magic Barrier NPC_HIDDEN,0,0,{ + end; + +OnTouch: + if (BaseLevel > 40) + warp "006-4", 32, 258; + else + dispbottom l("Your strength is not enough to power on this portal."); + end; +} |