aneedlefang427637.lua 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427637.lua
  3. Script Purpose : Waypoint Path for aneedlefang427637.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:48:27
  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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, 42.99, -12.04, 59.16, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 33.95, -11.9, 55.7, 2, 0)
  19. MovementLoopAddLocation(NPC, 26.99, -12.97, 51.33, 2, 0)
  20. MovementLoopAddLocation(NPC, 25.96, -13.08, 49.84, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 10.04, -12.6, 44.72, 2, 0)
  22. MovementLoopAddLocation(NPC, 2.55, -12.52, 40.2, 2, 0)
  23. MovementLoopAddLocation(NPC, -14.76, -12.91, 29.08, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -2.31, -12.83, 41.44, 2, 0)
  25. MovementLoopAddLocation(NPC, 4.03, -13.19, 44.57, 2, 0)
  26. MovementLoopAddLocation(NPC, 6.82, -13.68, 47.91, 2, 0)
  27. MovementLoopAddLocation(NPC, 8.53, -13.59, 53.7, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 15.88, -14.65, 43.51, 2, 0)
  29. MovementLoopAddLocation(NPC, 17.83, -14.72, 41.81, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 22.21, -13.95, 36.5, 2, 0)
  31. MovementLoopAddLocation(NPC, 31.56, -13.89, 29.41, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 19.84, -12.17, 30.92, 2, 0)
  33. MovementLoopAddLocation(NPC, 9.19, -11.89, 36.66, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, 18.01, -13.37, 41.21, 2, 0)
  35. MovementLoopAddLocation(NPC, 23.62, -13.35, 43.45, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, 13.05, -13.55, 39.94, 2, 0)
  37. MovementLoopAddLocation(NPC, 0.29, -13.14, 34.48, 2, 0)
  38. MovementLoopAddLocation(NPC, -7.89, -12.66, 31.82, 2, math.random(10, 20))
  39. MovementLoopAddLocation(NPC, 8.6, -12.96, 37.76, 2, 0)
  40. MovementLoopAddLocation(NPC, 13.42, -13.05, 41.97, 2, math.random(10, 20))
  41. MovementLoopAddLocation(NPC, 17.99, -12.99, 45.82, 2, math.random(10, 20))
  42. MovementLoopAddLocation(NPC, 31.47, -11.92, 52.67, 2, 0)
  43. end