aDervishthug.lua 468 B

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