aBloodskulltamer.lua 504 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Commonlands/aBloodskulltamer.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2024.01.04 05:01:33
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/NPCModule"
  9. function spawn(NPC, Spawn)
  10. NPCModule(NPC, Spawn)
  11. Bloodskull(NPC)
  12. OrcArmorCommon(NPC)
  13. RandomMovement(NPC, Spawn, 10, -10, 2, 8, 15)
  14. end
  15. function hailed(NPC, Spawn)
  16. FaceTarget(NPC, Spawn)
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end