abloodthirstyworg4.lua 504 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : SpawnScripts/WailingCaves/abloodthirstyworg4.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.08 08:07:01
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function FollowMaster4(NPC, Spawn)
  11. local zone = GetZone(NPC)
  12. local WorgMaster = GetSpawnByLocationID(zone, 404870)
  13. if WorgMaster ~= nil then
  14. SetFollowTarget(NPC, WorgMaster)
  15. SetSpeed(NPC , 2)
  16. ToggleFollow(NPC)
  17. end
  18. end
  19. function respawn(NPC)
  20. end