rifter_bleeder9.lua 478 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : rifter_bleeder8.lua
  3. Script Purpose : Waypoint Path for rifter_bleeder8.lua
  4. Script Author : Devn00b
  5. Script Date : 05/13/2020 04:40:10 PM
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. local follownpc = GetSpawn(NPC, 1990046)
  10. SetFollowTarget(NPC, follownpc, 3)
  11. end
  12. function hailed(NPC, Spawn)
  13. FaceTarget(NPC, Spawn)
  14. end
  15. function respawn(NPC)
  16. local follownpc = GetSpawn(NPC, 1990046)
  17. SetFollowTarget(NPC, follownpc, 3)
  18. end