summaryrefslogtreecommitdiff
path: root/npc/001-6
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-10-23 21:44:22 -0300
committerJesusaves <cpntb1@ymail.com>2022-10-23 21:44:22 -0300
commita7c45a192268da2601cef47a4cdba987ae2327ca (patch)
treec5fb5b97db109fe7106496dd96498c475881046b /npc/001-6
downloadserverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.tar.gz
serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.tar.bz2
serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.tar.xz
serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.zip
Initial commit (Moubootaur Legends fork)
Diffstat (limited to 'npc/001-6')
-rw-r--r--npc/001-6/_import.txt5
-rw-r--r--npc/001-6/_mobs.txt14
-rw-r--r--npc/001-6/mapflags.txt1
-rw-r--r--npc/001-6/warp.txt32
4 files changed, 52 insertions, 0 deletions
diff --git a/npc/001-6/_import.txt b/npc/001-6/_import.txt
new file mode 100644
index 0000000..9adfa79
--- /dev/null
+++ b/npc/001-6/_import.txt
@@ -0,0 +1,5 @@
+// Map 001-6: Cave Of Trials
+// This file is generated automatically. All manually added changes will be removed when running the Converter.
+"npc/001-6/_mobs.txt",
+"npc/001-6/mapflags.txt",
+"npc/001-6/warp.txt",
diff --git a/npc/001-6/_mobs.txt b/npc/001-6/_mobs.txt
new file mode 100644
index 0000000..aa7a0b2
--- /dev/null
+++ b/npc/001-6/_mobs.txt
@@ -0,0 +1,14 @@
+// This file is generated automatically. All manually added changes will be removed when running the Converter.
+// Map 001-6: Cave Of Trials mobs
+001-6,94,24,92,38 monster Bif 1058,6,45000,35000
+001-6,159,156,6,7 monster King Of Trials 1079,1,60000,60000
+001-6,147,139,38,42 monster Giant Mutated Bat 1044,4,60000,60000
+001-6,40,143,22,37 monster Red Slime 1092,24,20000,60000
+001-6,40,75,33,37 monster Lava Slime 1097,12,30000,60000
+001-6,88,160,30,24 monster Yellow Slime 1091,8,60000,60000
+001-6,112,52,69,41 monster Snake 1122,17,60000,60000
+001-6,119,91,57,42 monster Black Scorpion 1074,23,30000,50000
+001-6,135,117,11,12 monster Dark Lizard 1051,2,60000,60000
+001-6,30,31,11,12 monster Dark Lizard 1051,1,60000,90000
+001-6,155,159,34,35 monster Lava Slime 1097,6,30000,30000
+001-6,169,77,22,37 monster Red Slime 1092,8,20000,60000
diff --git a/npc/001-6/mapflags.txt b/npc/001-6/mapflags.txt
new file mode 100644
index 0000000..c6904ba
--- /dev/null
+++ b/npc/001-6/mapflags.txt
@@ -0,0 +1 @@
+001-6 mapflag zone MMO
diff --git a/npc/001-6/warp.txt b/npc/001-6/warp.txt
new file mode 100644
index 0000000..b0e3879
--- /dev/null
+++ b/npc/001-6/warp.txt
@@ -0,0 +1,32 @@
+// TMW2 Scripts
+// Author:
+// Jesusalva
+// Description:
+// TODO
+
+
+001-6,159,157,0 script Soren Village NPC_SUMMONING_CIRC,0,0,{
+ end;
+
+OnTouch:
+ if (@SorenWarpOnline == 1)
+ end;
+ dispbottom l("Loading warp, be at this spot in 15 seconds.");
+ @SorenWarpOnline=1;
+ addtimer 15000, "Soren Village::OnWarper";
+ end;
+
+OnWarper:
+ @SorenWarpOnline=0;
+ if (isin("001-6", 159, 157, 159, 157) && !ispcdead()) {
+ compareandsetq HurnscaldQuest_Celestia, 2, 3;
+ warp "soren", 179, 76;
+ } else {
+ dispbottom l("Failed to warp to Soren Village.");
+ }
+ end;
+
+OnInit:
+ .sex = G_OTHER;
+ end;
+}