amorakdevourer1587730.lua 924 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer1587730.lua
  3. Script Purpose : Waypoint Path for amorakdevourer1587730.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:10:36
  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, 219.12, -0.76, -57.9, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 222.47, -3.88, -38.36, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, 226.76, -3.83, -32.53, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, 223.22, -3.84, -38.03, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, 222.92, -0.76, -57.84, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 218.02, -1.2, -60.64, 2, math.random(14, 25))
  24. end