diff options
author | Jared Adams <jaxad0127@gmail.com> | 2008-11-19 13:38:20 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2008-11-19 13:38:20 +0000 |
commit | 1195ea1eb880ca9c77f2471e036d8bb8009fd70d (patch) | |
tree | 888b3dded2573c38c92acb7d6faf528d02abfd8b /npc/016-1_Woodland | |
parent | c35d7a43946974cc85497980f4542f0b8abc1a56 (diff) | |
download | serverdata-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/016-1_Woodland')
-rw-r--r-- | npc/016-1_Woodland/_import.txt | 4 | ||||
-rw-r--r-- | npc/016-1_Woodland/_mobs.txt | 7 | ||||
-rw-r--r-- | npc/016-1_Woodland/_warps.txt | 3 | ||||
-rw-r--r-- | npc/016-1_Woodland/monsters.txt | 40 |
4 files changed, 54 insertions, 0 deletions
diff --git a/npc/016-1_Woodland/_import.txt b/npc/016-1_Woodland/_import.txt new file mode 100644 index 00000000..5147cc8f --- /dev/null +++ b/npc/016-1_Woodland/_import.txt @@ -0,0 +1,4 @@ +map: 016-1.gat +npc: npc/016-1_Woodland/monsters.txt +npc: npc/016-1_Woodland/_warps.txt +npc: npc/016-1_Woodland/_mobs.txt diff --git a/npc/016-1_Woodland/_mobs.txt b/npc/016-1_Woodland/_mobs.txt new file mode 100644 index 00000000..dd0a4eca --- /dev/null +++ b/npc/016-1_Woodland/_mobs.txt @@ -0,0 +1,7 @@ +// 016-1 Woodland mobs + + + +016-1.gat,0,0,0 script Mob016-1 -1,{ + end; +} diff --git a/npc/016-1_Woodland/_warps.txt b/npc/016-1_Woodland/_warps.txt new file mode 100644 index 00000000..a9c59657 --- /dev/null +++ b/npc/016-1_Woodland/_warps.txt @@ -0,0 +1,3 @@ +// 016-1 Woodland warps + +016-1.gat,56,20 warp ToWoodland 1,-1,010-1.gat,56,103 diff --git a/npc/016-1_Woodland/monsters.txt b/npc/016-1_Woodland/monsters.txt new file mode 100644 index 00000000..8075550c --- /dev/null +++ b/npc/016-1_Woodland/monsters.txt @@ -0,0 +1,40 @@ +// Map: new_32-1 +// This is Southernmost Woodlands. +// + +new_32-1.gat,0,0,0,0 monster Mouboo 1028,5,0,0,Mob32::OnMouboo +new_32-1.gat,0,0,0,0 monster Scorpion 1003,15,0,0,Mob32::OnScorpion + +new_32-1.gat,0,0,0,0 monster Mauve 1029,3,0,0,Mob32::OnMauve +new_32-1.gat,0,0,0,0 monster Cobalt 1030,3,0,0,Mob32::OnCobalt + +new_32-1.gat,0,0,0,0 monster SilkWorm 1035,7,15000,7000,Mob32::onSilkWorm + +new_32-1.gat,0,0,0 script Mob32 -1,{ +OnMouboo: + set @mobID, 1028; + callfunc "MobPoints"; + break; + +OnScorpion: + set @mobID, 1003; + callfunc "MobPoints"; + break; + +OnMauve: + set @mobID, 1029; + callfunc "MobPoints"; + break; + +OnCobalt: + set @mobID, 1030; + callfunc "MobPoints"; + break; + +OnSilkWorm: + set @mobID, 1035; + callfunc "MobPoints"; + break; + + end; +} |