amorakdevourer1587719.lua 847 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer1587719.lua
  3. Script Purpose : Waypoint Path for amorakdevourer1587719.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:10:04
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. waypoints(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 waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 244.1, -0.87, -134.98, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 238.68, -1, -115.41, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, 238.32, -0.85, -142.88, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, 239.91, -0.85, -132.82, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, 230.24, -1, -101.2, 2, math.random(14, 25))
  23. end