summaryrefslogtreecommitdiff
path: root/npc/000-2-2
diff options
context:
space:
mode:
authorJoseph Botosh <rumly111@gmail.com>2015-10-24 22:09:15 +0300
committerJoseph Botosh <rumly111@gmail.com>2015-10-24 22:10:48 +0300
commit18f61b3378021b100926e57d13c2329d9f91d092 (patch)
tree2a8f2774ed8e073f4f418dc094fb54703b9a701d /npc/000-2-2
parent175fa2972de3fb8225ed411866173999723488bc (diff)
downloadserverdata-18f61b3378021b100926e57d13c2329d9f91d092.tar.gz
serverdata-18f61b3378021b100926e57d13c2329d9f91d092.tar.bz2
serverdata-18f61b3378021b100926e57d13c2329d9f91d092.tar.xz
serverdata-18f61b3378021b100926e57d13c2329d9f91d092.zip
update mobs spawn on 000-2-2
Diffstat (limited to 'npc/000-2-2')
-rw-r--r--npc/000-2-2/_mobs.txt12
-rw-r--r--npc/000-2-2/ratto.txt68
2 files changed, 12 insertions, 68 deletions
diff --git a/npc/000-2-2/_mobs.txt b/npc/000-2-2/_mobs.txt
new file mode 100644
index 000000000..78c1143a6
--- /dev/null
+++ b/npc/000-2-2/_mobs.txt
@@ -0,0 +1,12 @@
+// 000-2-2 mobs
+
+// Fouit and Oufti.
+000-2-2.gat,28,24,7,5 monster Crafty 1012,2,30000,20000
+000-2-2.gat,37,35,6,10 monster Crafty 1012,2,30000,20000
+000-2-2.gat,45,32,6,14 monster Crafty 1012,3,30000,20000
+000-2-2.gat,37,26,6,3 monster Crafty 1013,2,30000,20000
+000-2-2.gat,28,32,8,4 monster Crafty 1013,3,30000,20000
+000-2-2.gat,45,32,6,14 monster Crafty 1013,2,30000,20000
+
+// Pumpkish.
+000-2-2.gat,27,30,24,14 monster Pumpkish 1010,4,30000,10000
diff --git a/npc/000-2-2/ratto.txt b/npc/000-2-2/ratto.txt
deleted file mode 100644
index 2ff5c5727..000000000
--- a/npc/000-2-2/ratto.txt
+++ /dev/null
@@ -1,68 +0,0 @@
-// Evol scripts.
-// Authors:
-// Ablu
-// Alastrim
-// Reid
-// Description:
-// Ratto killer.
-
-// $@RAT_SAILOR_CONTROL array explanation:
-// [1] = Shows status of ratto number 1 (1 is dead and 0 is alive).
-// [2] = Shows status of ratto number 2 (1 is dead and 0 is alive).
-// [3] = Shows status of ratto number 3 (1 is dead and 0 is alive).
-// [4] = Shows status of ratto number 4 (1 is dead and 0 is alive).
-// [5] = Shows how many seconds passed since ratto number 1 died.
-// [6] = Shows how many seconds passed since ratto number 2 died.
-// [7] = Shows how many seconds passed since ratto number 3 died.
-// [8] = Shows how many seconds passed since ratto number 4 died.
-// [9] = Shows how many seconds passed since the player started the quest.
-
-000-2-2,47,30,0 script RattosControl NPC_HIDDEN,{
-
-OnSpawn:
- areamonster "000-2-2.gat", 23, 19, 50, 40, "Ratto", 1005, 1, "RattosControl::OnRatto1Death";
- areamonster "000-2-2.gat", 23, 19, 50, 40, "Ratto", 1005, 1, "RattosControl::OnRatto2Death";
- areamonster "000-2-2.gat", 23, 19, 50, 40, "Ratto", 1005, 1, "RattosControl::OnRatto3Death";
- areamonster "000-2-2.gat", 23, 19, 50, 40, "Ratto", 1005, 1, "RattosControl::OnRatto4Death";
- close;
-
-OnRatto1Respawn:
- areamonster "000-2-2.gat", 23, 19, 50, 40, "Ratto", 1005, 1, "RattosControl::OnRatto1Death";
- $@RAT_SAILOR_CONTROL[1] = 0;
- $@RAT_SAILOR_CONTROL[5] = 0;
- end;
-
-OnRatto2Respawn:
- areamonster "000-2-2.gat", 23, 19, 50, 40, "Ratto", 1005, 1, "RattosControl::OnRatto2Death";
- $@RAT_SAILOR_CONTROL[2] = 0;
- $@RAT_SAILOR_CONTROL[6] = 0;
- end;
-
-OnRatto3Respawn:
- areamonster "000-2-2.gat", 23, 19, 50, 40, "Ratto", 1005, 1, "RattosControl::OnRatto3Death";
- $@RAT_SAILOR_CONTROL[3] = 0;
- $@RAT_SAILOR_CONTROL[7] = 0;
- end;
-
-OnRatto4Respawn:
- areamonster "000-2-2.gat", 23, 19, 50, 40, "Ratto", 1005, 1, "RattosControl::OnRatto4Death";
- $@RAT_SAILOR_CONTROL[4] = 0;
- $@RAT_SAILOR_CONTROL[8] = 0;
- end;
-
-OnRatto1Death:
- $@RAT_SAILOR_CONTROL[1] = 1;
- end;
-
-OnRatto2Death:
- $@RAT_SAILOR_CONTROL[2] = 1;
- end;
-
-OnRatto3Death:
- $@RAT_SAILOR_CONTROL[3] = 1;
- end;
-
-OnRatto4Death:
- $@RAT_SAILOR_CONTROL[4] = 1;
- end;
-}