AShinReeApprentice.lua 529 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/WaillingCaves/AShinReeApprentice.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.05.22 09:05:53
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/OrcSkeletonVoiceOvers.lua")
  9. function spawn(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function respawn(NPC)
  15. spawn(NPC)
  16. end
  17. function aggro(NPC, Spawn)
  18. generic_aggro(NPC, Spawn)
  19. end
  20. function death(NPC, Spawn)
  21. generic_death(NPC, Spawn)
  22. end