areefturtle427103.lua 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427103.lua
  3. Script Purpose : Waypoint Path for areefturtle427103.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:21:46
  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, -3.27, -13.23, 33.32, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -6.5, -13.52, 33.79, 2, 0)
  19. MovementLoopAddLocation(NPC, -12.52, -13.54, 36.23, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -4.15, -12.37, 34.55, 2, 0)
  21. MovementLoopAddLocation(NPC, 2.02, -12.14, 30.94, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 19.75, -12.6, 42.04, 2, 0)
  23. MovementLoopAddLocation(NPC, 28.22, -12.57, 46.96, 2, 0)
  24. MovementLoopAddLocation(NPC, 33.56, -12.65, 47.59, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 47.13, -11.26, 44.5, 2, 0)
  26. MovementLoopAddLocation(NPC, 51.6, -11.35, 43.23, 2, 0)
  27. MovementLoopAddLocation(NPC, 62, -11.96, 38.86, 2, 0)
  28. MovementLoopAddLocation(NPC, 66.41, -12.32, 34.73, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 76.13, -11.34, 27.45, 2, 0)
  30. MovementLoopAddLocation(NPC, 80.57, -11.43, 23.84, 2, 0)
  31. MovementLoopAddLocation(NPC, 86.45, -12.21, 18.95, 2, 0)
  32. MovementLoopAddLocation(NPC, 91.85, -12.72, 13.14, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 82.69, -13.21, 6.4, 2, 0)
  34. MovementLoopAddLocation(NPC, 77.59, -12.39, -0.51, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, 78.59, -11.95, 4.66, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, 75.69, -13.74, 3.07, 2, 0)
  37. MovementLoopAddLocation(NPC, 72.04, -15.29, 1.53, 2, 0)
  38. MovementLoopAddLocation(NPC, 69.46, -15.5, 1.91, 2, math.random(10, 20))
  39. MovementLoopAddLocation(NPC, 72.94, -14.96, 4.02, 2, 0)
  40. MovementLoopAddLocation(NPC, 75.38, -14.28, 6.27, 2, 0)
  41. MovementLoopAddLocation(NPC, 78.1, -13.38, 9.73, 2, 0)
  42. MovementLoopAddLocation(NPC, 79.65, -13.31, 12.78, 2, 0)
  43. MovementLoopAddLocation(NPC, 83.01, -12.85, 16.35, 2, 0)
  44. MovementLoopAddLocation(NPC, 85.23, -12.89, 17.32, 2, math.random(10, 20))
  45. MovementLoopAddLocation(NPC, 100.33, -12.29, 23.93, 2, math.random(10, 20))
  46. MovementLoopAddLocation(NPC, 88.37, -12.28, 26.95, 2, 0)
  47. MovementLoopAddLocation(NPC, 80.06, -12.41, 31.96, 2, math.random(10, 20))
  48. MovementLoopAddLocation(NPC, 73.79, -11.5, 32.28, 2, 0)
  49. MovementLoopAddLocation(NPC, 61.59, -11.36, 31.59, 2, 0)
  50. MovementLoopAddLocation(NPC, 54.45, -11.04, 32.12, 2, 0)
  51. MovementLoopAddLocation(NPC, 27.31, -12.41, 30.22, 2, 0)
  52. MovementLoopAddLocation(NPC, 9.69, -12.75, 30.96, 2, 0)
  53. end