amorakdevourer1587731.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer1587731.lua
  3. Script Purpose : Waypoint Path for amorakdevourer1587731.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:10:39
  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, 216.12, -0.78, -83.89, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 217.94, -2.79, -46.51, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, 213.31, -1, -64.65, 2, 0)
  21. MovementLoopAddLocation(NPC, 211.28, -0.76, -74.72, 2, 0)
  22. MovementLoopAddLocation(NPC, 214.64, -0.77, -85.51, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 224.69, -3.82, -34.08, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 216.94, -1.35, -67.59, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, 215.3, -1.22, -61.1, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, 219.95, -1.13, -68.61, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, 216.58, -0.78, -78.89, 2, 0)
  28. end