areefturtle427034.lua 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427034.lua
  3. Script Purpose : Waypoint Path for areefturtle427034.lua
  4. Script Author : Rylec
  5. Script Date : 11-14-2019 09:00:25
  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, -118.89, -10.98, 8.26, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -122.26, -10.57, 14.18, 2, 0)
  19. MovementLoopAddLocation(NPC, -124.34, -10.5, 28.41, 2, 0)
  20. MovementLoopAddLocation(NPC, -124.89, -10.32, 60.88, 2, 0)
  21. MovementLoopAddLocation(NPC, -124.11, -11.71, 69.24, 2, 0)
  22. MovementLoopAddLocation(NPC, -122.46, -11.81, 72.47, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -119.96, -11.4, 70.69, 2, 0)
  24. MovementLoopAddLocation(NPC, -118.49, -11.39, 68.43, 2, 0)
  25. MovementLoopAddLocation(NPC, -115.88, -10.61, 46.16, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -122.57, -11.4, 42.82, 2, 0)
  27. MovementLoopAddLocation(NPC, -138.06, -12.35, 41.68, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -142.27, -12.61, 3.25, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -137.71, -12.8, 8.96, 2, 0)
  30. MovementLoopAddLocation(NPC, -129.92, -11.87, 39.57, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -137.94, -12.75, 47.91, 2, 0)
  32. MovementLoopAddLocation(NPC, -144.15, -13.08, 50.44, 2, 0)
  33. MovementLoopAddLocation(NPC, -147.87, -13.27, 54.2, 2, 0)
  34. MovementLoopAddLocation(NPC, -148.58, -13.57, 72.2, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, -148.01, -13.27, 56.75, 2, 0)
  36. MovementLoopAddLocation(NPC, -145.32, -13.08, 51.84, 2, 0)
  37. MovementLoopAddLocation(NPC, -135.61, -12.22, 51.15, 2, 0)
  38. MovementLoopAddLocation(NPC, -128.79, -11.45, 55.69, 2, 0)
  39. MovementLoopAddLocation(NPC, -125.35, -11.32, 59.15, 2, 0)
  40. MovementLoopAddLocation(NPC, -125.39, -11.67, 66.01, 2, math.random(10, 20))
  41. MovementLoopAddLocation(NPC, -124.89, -11.29, 60.24, 2, 0)
  42. MovementLoopAddLocation(NPC, -126.76, -10.4, 58.89, 2, 0)
  43. MovementLoopAddLocation(NPC, -132.11, -11.87, 56.2, 2, 0)
  44. MovementLoopAddLocation(NPC, -135.47, -12.81, 57.41, 2, 0)
  45. MovementLoopAddLocation(NPC, -136.13, -12.99, 63.98, 2, math.random(10, 20))
  46. MovementLoopAddLocation(NPC, -135.96, -13.09, 56.9, 2, 0)
  47. MovementLoopAddLocation(NPC, -134.14, -12.48, 48.13, 2, 0)
  48. MovementLoopAddLocation(NPC, -125.51, -11.82, 33.5, 2, math.random(10, 20))
  49. MovementLoopAddLocation(NPC, -127.44, -11.74, 30.98, 2, 0)
  50. MovementLoopAddLocation(NPC, -130.18, -11.27, 30.94, 2, 0)
  51. MovementLoopAddLocation(NPC, -135.47, -11.42, 31.24, 2, math.random(10, 20))
  52. MovementLoopAddLocation(NPC, -140.77, -12.73, 23.69, 2, 0)
  53. MovementLoopAddLocation(NPC, -146.68, -13.38, 20.98, 2, math.random(10, 20))
  54. MovementLoopAddLocation(NPC, -133.58, -12.04, 16.06, 2, 0)
  55. MovementLoopAddLocation(NPC, -129.08, -11.57, 12.28, 2, 0)
  56. MovementLoopAddLocation(NPC, -124.63, -10.99, 10.55, 2, 0)
  57. end