diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-11-19 20:36:11 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-11-19 20:36:11 -0200 |
commit | 7116a24973676e10737793c9dca166af66d1f859 (patch) | |
tree | 53cde07add310189f5303736cf8e32ac7225ccff /npc | |
parent | 321ae10f4632043e2314d3a762ef8cba6d326605 (diff) | |
download | serverdata-7116a24973676e10737793c9dca166af66d1f859.tar.gz serverdata-7116a24973676e10737793c9dca166af66d1f859.tar.bz2 serverdata-7116a24973676e10737793c9dca166af66d1f859.tar.xz serverdata-7116a24973676e10737793c9dca166af66d1f859.zip |
Some snipers for testing
Diffstat (limited to 'npc')
-rw-r--r-- | npc/001-10/scripts.txt | 15 |
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; } |