summaryrefslogtreecommitdiff
path: root/npc/012-3_Cave
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2008-11-19 13:38:20 +0000
committerJared Adams <jaxad0127@gmail.com>2008-11-19 13:38:20 +0000
commit1195ea1eb880ca9c77f2471e036d8bb8009fd70d (patch)
tree888b3dded2573c38c92acb7d6faf528d02abfd8b /npc/012-3_Cave
parentc35d7a43946974cc85497980f4542f0b8abc1a56 (diff)
downloadserverdata-1195ea1eb880ca9c77f2471e036d8bb8009fd70d.tar.gz
serverdata-1195ea1eb880ca9c77f2471e036d8bb8009fd70d.tar.bz2
serverdata-1195ea1eb880ca9c77f2471e036d8bb8009fd70d.tar.xz
serverdata-1195ea1eb880ca9c77f2471e036d8bb8009fd70d.zip
Change all script folders
Script files fixes are comming
Diffstat (limited to 'npc/012-3_Cave')
-rw-r--r--npc/012-3_Cave/_import.txt4
-rw-r--r--npc/012-3_Cave/_mobs.txt7
-rw-r--r--npc/012-3_Cave/_warps.txt11
-rw-r--r--npc/012-3_Cave/monsters.txt20
4 files changed, 42 insertions, 0 deletions
diff --git a/npc/012-3_Cave/_import.txt b/npc/012-3_Cave/_import.txt
new file mode 100644
index 00000000..270632e0
--- /dev/null
+++ b/npc/012-3_Cave/_import.txt
@@ -0,0 +1,4 @@
+map: 012-3.gat
+npc: npc/012-3_Cave/monsters.txt
+npc: npc/012-3_Cave/_warps.txt
+npc: npc/012-3_Cave/_mobs.txt
diff --git a/npc/012-3_Cave/_mobs.txt b/npc/012-3_Cave/_mobs.txt
new file mode 100644
index 00000000..70c39e3d
--- /dev/null
+++ b/npc/012-3_Cave/_mobs.txt
@@ -0,0 +1,7 @@
+// 012-3 Cave mobs
+
+
+
+012-3.gat,0,0,0 script Mob012-3 -1,{
+ end;
+}
diff --git a/npc/012-3_Cave/_warps.txt b/npc/012-3_Cave/_warps.txt
new file mode 100644
index 00000000..58e842ba
--- /dev/null
+++ b/npc/012-3_Cave/_warps.txt
@@ -0,0 +1,11 @@
+// 012-3 Cave warps
+
+012-3.gat,37,82 warp CaveExit 0,-1,012-1.gat,98,100
+012-3.gat,80,74 warp CaveExit 0,-1,012-1.gat,109,93
+012-3.gat,39,157 warp CaveExit 0,-1,012-1.gat,123,91
+012-3.gat,270,112 warp CaveExit -1,-1,012-1.gat,92,105
+012-3.gat,176,138 warp CaveExit -1,-1,012-1.gat,65,127
+012-3.gat,355,188 warp CaveExit 0,-1,012-1.gat,44,89
+012-3.gat,371,46 warp CaveExit 0,-1,012-1.gat,51,40
+012-3.gat,354,79 warp CaveExit 0,-1,012-1.gat,41,48
+012-3.gat,473,104 warp CaveExit -1,1,012-1.gat,146,67
diff --git a/npc/012-3_Cave/monsters.txt b/npc/012-3_Cave/monsters.txt
new file mode 100644
index 00000000..bb0799bb
--- /dev/null
+++ b/npc/012-3_Cave/monsters.txt
@@ -0,0 +1,20 @@
+// Map: new_27-1
+// This is the Caves beneath the North Woodland.
+//
+
+new_27-1.gat,0,0,0,0 monster Bat 1017,100,0,0,Mob27::OnBat
+new_27-1.gat,0,0,0,0 monster CaveSnake 1021,75,0,0,Mob27::OnCaveSnake
+
+new_27-1.gat,0,0,0 script Mob27 -1,{
+OnBat:
+ set @mobID, 1017;
+ callfunc "MobPoints";
+ break;
+
+OnCaveSnake:
+ set @mobID, 1021;
+ callfunc "MobPoints";
+ break;
+
+ end;
+}