aSabertoothexcavatorNoMining.lua 633 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/Blackburrow/aSabertoothexcavatorNoMining.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.04.28 09:04:42
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/BaseGnoll1.lua")
  9. function spawn(NPC)
  10. --AddTimer(NPC,math.random(2500,6000),"AttackRocks")
  11. end
  12. function hailed(NPC, Spawn)
  13. FaceTarget(NPC, Spawn)
  14. end
  15. function respawn(NPC)
  16. spawn(NPC)
  17. end
  18. function AttackRocks(NPC)
  19. if not IsInCombat(NPC) then
  20. PlayAnimation(NPC,10784)
  21. end
  22. AddTimer(NPC, math.random(3000,6000), "AttackRocks")
  23. end