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/003-1_Beach | |
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/003-1_Beach')
-rw-r--r-- | npc/003-1_Beach/_import.txt | 4 | ||||
-rw-r--r-- | npc/003-1_Beach/_mobs.txt | 19 | ||||
-rw-r--r-- | npc/003-1_Beach/_warps.txt | 4 | ||||
-rw-r--r-- | npc/003-1_Beach/monsters.txt | 20 |
4 files changed, 47 insertions, 0 deletions
diff --git a/npc/003-1_Beach/_import.txt b/npc/003-1_Beach/_import.txt new file mode 100644 index 00000000..68474692 --- /dev/null +++ b/npc/003-1_Beach/_import.txt @@ -0,0 +1,4 @@ +map: 003-1.gat +npc: npc/003-1_Beach/monsters.txt +npc: npc/003-1_Beach/_warps.txt +npc: npc/003-1_Beach/_mobs.txt diff --git a/npc/003-1_Beach/_mobs.txt b/npc/003-1_Beach/_mobs.txt new file mode 100644 index 00000000..c7daca33 --- /dev/null +++ b/npc/003-1_Beach/_mobs.txt @@ -0,0 +1,19 @@ +// 003-1 Beach mobs + +003-1.gat,117,48,19,19 monster Black Scorpion 1009,10,0,0,Mob003-1::On1009 +003-1.gat,105,64,19,19 monster Snake 1010,10,0,0,Mob003-1::On1010 + + +003-1.gat,0,0,0 script Mob003-1 -1,{ +On1009: + set @mobID, 1009; + callfunc "MobPoints"; + break; + +On1010: + set @mobID, 1010; + callfunc "MobPoints"; + break; + + end; +} diff --git a/npc/003-1_Beach/_warps.txt b/npc/003-1_Beach/_warps.txt new file mode 100644 index 00000000..2358947b --- /dev/null +++ b/npc/003-1_Beach/_warps.txt @@ -0,0 +1,4 @@ +// 003-1 Beach warps + +003-1.gat,172,77 warp ToSandstorm -1,3,002-1.gat,37,109 +003-1.gat,20,23 warp ToWoodland 1,-1,007-1.gat,120,112 diff --git a/npc/003-1_Beach/monsters.txt b/npc/003-1_Beach/monsters.txt new file mode 100644 index 00000000..81246489 --- /dev/null +++ b/npc/003-1_Beach/monsters.txt @@ -0,0 +1,20 @@ +// Map: new_15-1 +// This is the Desert Beach. +// + +new_15-1.gat,0,0,0,0 monster BlackScorpion 1009,20,0,0,Mob15::OnBlackScorpion +new_15-1.gat,0,0,0,0 monster Snake 1010,10,0,0,Mob15::OnSnake + +new_15-1.gat,0,0,0 script Mob15 -1,{ +OnBlackScorpion: + set @mobID, 1009; + callfunc "MobPoints"; + break; + +OnSnake: + set @mobID, 1010; + callfunc "MobPoints"; + break; + + end; +} |