amorakdevourer1587729.lua 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer1587729.lua
  3. Script Purpose : Waypoint Path for amorakdevourer1587729.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:10:34
  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, 223.45, -1.49, -65.25, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 215.3, -0.98, -71.46, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, 223.09, -3.81, -33.93, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, 222.06, -1.48, -64.09, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, 216.1, -1.46, -63.9, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 198.96, -0.71, -88.8, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 216.27, -0.78, -85.72, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, 220.07, -0.74, -57.75, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, 218.98, -0.79, -76.31, 2, math.random(14, 25))
  27. end