diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-11-19 20:33:17 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-11-19 20:33:17 -0200 |
commit | 321ae10f4632043e2314d3a762ef8cba6d326605 (patch) | |
tree | 8c8dab825b7da446df8ceef850cd60d2e5187aa7 /npc/001-10/scripts.txt | |
parent | 3c47f58e7227eab2591b251e95e8ff7fad58b3bd (diff) | |
download | serverdata-321ae10f4632043e2314d3a762ef8cba6d326605.tar.gz serverdata-321ae10f4632043e2314d3a762ef8cba6d326605.tar.bz2 serverdata-321ae10f4632043e2314d3a762ef8cba6d326605.tar.xz serverdata-321ae10f4632043e2314d3a762ef8cba6d326605.zip |
Some angry bats in 001-10 to pest you (but very few)
Diffstat (limited to 'npc/001-10/scripts.txt')
-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; } |