summaryrefslogtreecommitdiff
path: root/npc/004-1_Beach
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/004-1_Beach
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/004-1_Beach')
-rw-r--r--npc/004-1_Beach/_import.txt4
-rw-r--r--npc/004-1_Beach/_mobs.txt7
-rw-r--r--npc/004-1_Beach/_warps.txt4
-rw-r--r--npc/004-1_Beach/monsters.txt26
4 files changed, 41 insertions, 0 deletions
diff --git a/npc/004-1_Beach/_import.txt b/npc/004-1_Beach/_import.txt
new file mode 100644
index 00000000..fc7c344b
--- /dev/null
+++ b/npc/004-1_Beach/_import.txt
@@ -0,0 +1,4 @@
+map: 004-1.gat
+npc: npc/004-1_Beach/monsters.txt
+npc: npc/004-1_Beach/_warps.txt
+npc: npc/004-1_Beach/_mobs.txt
diff --git a/npc/004-1_Beach/_mobs.txt b/npc/004-1_Beach/_mobs.txt
new file mode 100644
index 00000000..bc8e68a9
--- /dev/null
+++ b/npc/004-1_Beach/_mobs.txt
@@ -0,0 +1,7 @@
+// 004-1 Beach mobs
+
+
+
+004-1.gat,0,0,0 script Mob004-1 -1,{
+ end;
+}
diff --git a/npc/004-1_Beach/_warps.txt b/npc/004-1_Beach/_warps.txt
new file mode 100644
index 00000000..b6ccc7d0
--- /dev/null
+++ b/npc/004-1_Beach/_warps.txt
@@ -0,0 +1,4 @@
+// 004-1 Beach warps
+
+004-1.gat,84,113 warp ToSandstorm 1,-1,002-1.gat,29,15
+004-1.gat,37,111 warp ToBeach 1,-1,003-1.gat,141,21
diff --git a/npc/004-1_Beach/monsters.txt b/npc/004-1_Beach/monsters.txt
new file mode 100644
index 00000000..89fcbda7
--- /dev/null
+++ b/npc/004-1_Beach/monsters.txt
@@ -0,0 +1,26 @@
+// Map: new_34-1
+// This is the Beach west of Tulimshar.
+//
+
+new_34-1.gat,0,0,0,0 monster SeaSlime 1033,30,0,0,Mob34::OnSeaSlime
+new_34-1.gat,0,0,0,0 monster GiantMaggot 1006,10,0,0,Mob34::OnGiantMaggot
+new_34-1.gat,0,0,0,0 monster RedScorpion 1004,12,0,0,Mob34::OnRedScorpion
+
+new_34-1.gat,0,0,0 script Mob34 -1,{
+OnSeaSlime:
+ set @mobID, 1033;
+ callfunc "MobPoints";
+ break;
+
+OnGiantMaggot:
+ set @mobID, 1006;
+ callfunc "MobPoints";
+ break;
+
+OnRedScorpion:
+ set @mobID, 1004;
+ callfunc "MobPoints";
+ break;
+
+ end;
+}