afrenziedwatcher.lua 460 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/DownBelow_Classic/afrenziedwatcher.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.01.09 09:01:14
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/NPCModule"
  9. function spawn(NPC, Spawn)
  10. NPCModule(NPC, Spawn)
  11. SetSeeHide(NPC,1)
  12. SetSeeInvis(NPC,1)
  13. end
  14. function hailed(NPC, Spawn)
  15. FaceTarget(NPC, Spawn)
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end