diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-10-23 21:44:22 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-10-23 21:44:22 -0300 |
commit | a7c45a192268da2601cef47a4cdba987ae2327ca (patch) | |
tree | c5fb5b97db109fe7106496dd96498c475881046b /npc/006-3 | |
download | serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.tar.gz serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.tar.bz2 serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.tar.xz serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.zip |
Initial commit (Moubootaur Legends fork)
Diffstat (limited to 'npc/006-3')
-rw-r--r-- | npc/006-3/_import.txt | 7 | ||||
-rw-r--r-- | npc/006-3/_mobs.txt | 6 | ||||
-rw-r--r-- | npc/006-3/_warps.txt | 3 | ||||
-rw-r--r-- | npc/006-3/core.txt | 27 | ||||
-rw-r--r-- | npc/006-3/grotto.txt | 23 | ||||
-rw-r--r-- | npc/006-3/jaklab.txt | 27 |
6 files changed, 93 insertions, 0 deletions
diff --git a/npc/006-3/_import.txt b/npc/006-3/_import.txt new file mode 100644 index 0000000..450a0a8 --- /dev/null +++ b/npc/006-3/_import.txt @@ -0,0 +1,7 @@ +// Map 006-3: Candor's Underground, B2F +// 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/grotto.txt", +"npc/006-3/jaklab.txt", diff --git a/npc/006-3/_mobs.txt b/npc/006-3/_mobs.txt new file mode 100644 index 0000000..60f8634 --- /dev/null +++ b/npc/006-3/_mobs.txt @@ -0,0 +1,6 @@ +// This file is generated automatically. All manually added changes will be removed when running the Converter. +// Map 006-3: Candor's Underground, B2F mobs +006-3,46,38,16,14 monster Yellow Slime 1091,6,120000,30000 +006-3,44,36,15,14 monster Red Slime 1092,4,120000,30000 +006-3,45,33,18,14 monster Mineral Bif 1058,1,300000,30000 +006-3,44,32,23,12 monster Big Diamond Bif 1109,1,240000,30000 diff --git a/npc/006-3/_warps.txt b/npc/006-3/_warps.txt new file mode 100644 index 0000000..8bbe831 --- /dev/null +++ b/npc/006-3/_warps.txt @@ -0,0 +1,3 @@ +// This file is generated automatically. All manually added changes will be removed when running the Converter. +// Map 006-3: Candor's Underground, B2F warps +006-3,49,49,0 warp #006-3_49_49 0,0,006-0,46,27 diff --git a/npc/006-3/core.txt b/npc/006-3/core.txt new file mode 100644 index 0000000..9311a10 --- /dev/null +++ b/npc/006-3/core.txt @@ -0,0 +1,27 @@ +// TMW2 Script +// Author: +// Jesusalva + +006-3,46,26,0 script Magic Barrier#0063 NPC_HIDDEN,0,0,{ + end; + +OnTouch: + if (!getq(CandorQuest_Groata)) goto L_Reject; + if (!getq(CandorQuest_Jak1)) goto L_Reject; + if (getq(General_Narrator) < 10) goto L_Reject; // Halinarzo Arc must be finished + + specialeffect(5000, SELF, getcharid(3)); + dispbottom l("The power which lies in Candor acknowledges your strength."); + sleep2(2500); + warp "006-6", 49, 52; + sleep2(500); + specialeffect(5001, SELF, getcharid(3)); + end; + +L_Reject: + specialeffect(5000, SELF, getcharid(3)); + dispbottom l("The power which lies in Candor rejects your strength."); + sleep2(3000); + specialeffect(5002, SELF, getcharid(3)); + end; +} diff --git a/npc/006-3/grotto.txt b/npc/006-3/grotto.txt new file mode 100644 index 0000000..d7ff87b --- /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("To the brave, shan't be your grave."); + 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; +} diff --git a/npc/006-3/jaklab.txt b/npc/006-3/jaklab.txt new file mode 100644 index 0000000..f2d1190 --- /dev/null +++ b/npc/006-3/jaklab.txt @@ -0,0 +1,27 @@ +// TMW2 Script +// Author: +// Crazyfefe +// Jesusalva + + +006-3,53,36,0 script Sign#0063CF 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#0064 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; +} |