amorakdevourer1587715.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer1587715.lua
  3. Script Purpose : Waypoint Path for amorakdevourer1587715.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:09:50
  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, 252.56, -1.17, -63.31, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, 260.21, -1.51, -73.81, 2, 0)
  20. MovementLoopAddLocation(NPC, 272.42, -1.55, -75.23, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, 251.25, -0.16, -84.98, 2, 0)
  22. MovementLoopAddLocation(NPC, 238.61, -1.74, -98.43, 2, 0)
  23. MovementLoopAddLocation(NPC, 237.23, -1.39, -108.41, 2, 0)
  24. MovementLoopAddLocation(NPC, 241.94, -0.86, -127.51, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, 242.68, -0.89, -133.2, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, 236.99, -1.49, -107.08, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, 241.58, -0.86, -137.81, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, 232.69, -0.97, -115.3, 2, math.random(14, 25))
  29. MovementLoopAddLocation(NPC, 232.82, -1.32, -106.88, 2, math.random(14, 25))
  30. MovementLoopAddLocation(NPC, 235.41, -1.14, -111.13, 2, math.random(14, 25))
  31. end