amorakdevourer1587732.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer1587732.lua
  3. Script Purpose : Waypoint Path for amorakdevourer1587732.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:10:43
  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, 213.97, -1.24, -66.96, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 212.98, -0.77, -77.64, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, 213.05, -0.97, -71.42, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, 225.09, -0.76, -57.78, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, 214.14, -0.77, -79.18, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 199.15, -0.71, -87.46, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, 213.81, -1.27, -68.79, 2, 0)
  25. MovementLoopAddLocation(NPC, 219.99, -0.99, -59.26, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, 219.26, -2.65, -46.42, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, 216.42, -0.65, -54.07, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, 220.15, -2.3, -46.67, 2, math.random(14, 25))
  29. MovementLoopAddLocation(NPC, 219.37, -0.86, -50.74, 2, 0)
  30. MovementLoopAddLocation(NPC, 215.83, -1.28, -61.4, 2, math.random(14, 25))
  31. end