aSabertoothminer.lua 568 B

12345678910111213141516171819202122232425262728
  1. --[[
  2. Script Name : SpawnScripts/Blackburrow/aSabertoothminer.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.07.11 06:07:13
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/SabertoothGnoll2.lua")
  9. local TheChomper = 5696
  10. function spawn(NPC)
  11. end
  12. function hailed(NPC, Spawn)
  13. FaceTarget(NPC, Spawn)
  14. end
  15. function respawn(NPC)
  16. spawn(NPC)
  17. end
  18. function death(NPC, Spawn)
  19. if QuestIsComplete(Spawn, TheChomper) or HasItem(Spawn, 1285) then
  20. RemoveLootItem(NPC, 1285)
  21. end
  22. end