diff options
-rw-r--r-- | npc/001-10/scripts.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/npc/001-10/scripts.txt b/npc/001-10/scripts.txt index ec3d554f7..f4d575919 100644 --- a/npc/001-10/scripts.txt +++ b/npc/001-10/scripts.txt @@ -38,12 +38,21 @@ OnTouch: 001-10,0,0,0 script #CODMASTER NPC_NO_SPRITE,{ end; +// Death handlers +OnBatDeath: + areamonster("001-10", 0, 0, 200, 150, ("Angry Bat"), AngryBat, 1, "#CODMASTER::OnBatDeath"); + end; + OnDeath: - areamonster("001-10", 0, 0, 200, 200, l("TODO"), any(DustRifle, DustGatling, DustRevolver), 1, "#CODMASTER::OnDeath"); + areamonster("001-10", 0, 0, 200, 150, ("Sniper"), any(DustRifle, DustGatling, DustRevolver), 1, "#CODMASTER::OnDeath"); end; +///////////////////////////////////////////////////////////////////////////////// +/// on init block //// on init block ////// +///////////////////////////////////////////////////////////////////////////////// OnInit: - areamonster("001-10", 0, 0, 200, 200, l("TODO"), any(DustRifle, DustGatling, DustRevolver), 10, "#CODMASTER::OnDeath"); + 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"); end; } |