summaryrefslogtreecommitdiff
path: root/npc/001-10
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-11-19 20:36:11 -0200
committerJesusaves <cpntb1@ymail.com>2018-11-19 20:36:11 -0200
commit7116a24973676e10737793c9dca166af66d1f859 (patch)
tree53cde07add310189f5303736cf8e32ac7225ccff /npc/001-10
parent321ae10f4632043e2314d3a762ef8cba6d326605 (diff)
downloadserverdata-7116a24973676e10737793c9dca166af66d1f859.tar.gz
serverdata-7116a24973676e10737793c9dca166af66d1f859.tar.bz2
serverdata-7116a24973676e10737793c9dca166af66d1f859.tar.xz
serverdata-7116a24973676e10737793c9dca166af66d1f859.zip
Some snipers for testing
Diffstat (limited to 'npc/001-10')
-rw-r--r--npc/001-10/scripts.txt15
1 files changed, 13 insertions, 2 deletions
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;
}