summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--maps/re/001-10.mcachebin1031 -> 1477 bytes
-rw-r--r--npc/001-10/scripts.txt15
2 files changed, 13 insertions, 2 deletions
diff --git a/maps/re/001-10.mcache b/maps/re/001-10.mcache
index 4f6dde8fa..1ac4b21cc 100644
--- a/maps/re/001-10.mcache
+++ b/maps/re/001-10.mcache
Binary files differ
diff --git a/npc/001-10/scripts.txt b/npc/001-10/scripts.txt
index f4d575919..6805b3fd8 100644
--- a/npc/001-10/scripts.txt
+++ b/npc/001-10/scripts.txt
@@ -43,6 +43,14 @@ OnBatDeath:
areamonster("001-10", 0, 0, 200, 150, ("Angry Bat"), AngryBat, 1, "#CODMASTER::OnBatDeath");
end;
+OnNDeath:
+ areamonster("001-10", 0, 10, 200, 25, ("Sniper"), any(DustRifle, DustGatling, DustRevolver), 1, "#CODMASTER::OnNDeath");
+ end;
+
+OnSDeath:
+ areamonster("001-10", 0, 129, 200, 150, ("Sniper"), any(DustRifle, DustGatling, DustRevolver), 1, "#CODMASTER::OnSDeath");
+ end;
+
OnDeath:
areamonster("001-10", 0, 0, 200, 150, ("Sniper"), any(DustRifle, DustGatling, DustRevolver), 1, "#CODMASTER::OnDeath");
end;
@@ -51,8 +59,11 @@ OnDeath:
/// on init block //// on init block //////
/////////////////////////////////////////////////////////////////////////////////
OnInit:
- areamonster("001-10", 0, 0, 200, 150, ("Sniper"), any(DustRifle, DustGatling, DustRevolver), 15, "#CODMASTER::OnDeath");
- areamonster("001-10", 0, 0, 200, 150, ("Angry Bat"), AngryBat, 10, "#CODMASTER::OnBatDeath");
+ areamonster("001-10", 0, 0, 200, 150, ("Angry Bat"), AngryBat, 10, "#CODMASTER::OnBatDeath");
+
+ areamonster("001-10", 0, 0, 200, 150, ("Sniper"), any(DustRifle, DustGatling, DustRevolver), 15, "#CODMASTER::OnDeath");
+ areamonster("001-10", 0, 10, 200, 25, ("Sniper"), any(DustRifle, DustGatling, DustRevolver), 3, "#CODMASTER::OnNDeath");
+ areamonster("001-10", 0, 129, 200, 150, ("Sniper"), any(DustRifle, DustGatling, DustRevolver), 2, "#CODMASTER::OnSDeath");
end;
}