areefturtle427298.lua 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427298.lua
  3. Script Purpose : Waypoint Path for areefturtle427298.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 10:15:04
  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, -60.27, -11.71, -54.41, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -54.61, -11.16, -53.8, 2, 0)
  19. MovementLoopAddLocation(NPC, -34.54, -10.56, -54.24, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -37.61, -11.25, -45.93, 2, 0)
  21. MovementLoopAddLocation(NPC, -36.67, -11.18, -21.07, 2, 0)
  22. MovementLoopAddLocation(NPC, -34.74, -10.45, -12.72, 2, 0)
  23. MovementLoopAddLocation(NPC, -30.78, -11.59, 16.94, 2, 0)
  24. MovementLoopAddLocation(NPC, -30.64, -12.99, 24.31, 2, 0)
  25. MovementLoopAddLocation(NPC, -38.26, -12.7, 36.82, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -32.77, -11.8, 10.9, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -32.21, -11.46, 6.14, 2, 0)
  28. MovementLoopAddLocation(NPC, -26.21, -11.44, -7.33, 2, 0)
  29. MovementLoopAddLocation(NPC, -25.3, -11.72, -12.02, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, -25.48, -11.31, -16.96, 2, 0)
  31. MovementLoopAddLocation(NPC, -26.03, -11.58, -20.52, 2, 0)
  32. MovementLoopAddLocation(NPC, -26.06, -11.72, -23.36, 2, 0)
  33. MovementLoopAddLocation(NPC, -26.78, -11.8, -26.04, 2, 0)
  34. MovementLoopAddLocation(NPC, -31.67, -11.89, -35.34, 2, 0)
  35. MovementLoopAddLocation(NPC, -37.09, -11.79, -38.5, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, -34.2, -11.26, -32.85, 2, 0)
  37. MovementLoopAddLocation(NPC, -32.2, -10.41, -27.68, 2, 0)
  38. MovementLoopAddLocation(NPC, -29.63, -10.35, -18.69, 2, 0)
  39. MovementLoopAddLocation(NPC, -27.99, -10.99, -2.77, 2, 0)
  40. MovementLoopAddLocation(NPC, -26.64, -12.46, 0.13, 2, 0)
  41. MovementLoopAddLocation(NPC, -23.9, -13, 1.96, 2, math.random(10, 20))
  42. MovementLoopAddLocation(NPC, -24.52, -12.14, -0.35, 2, 0)
  43. MovementLoopAddLocation(NPC, -24.77, -11.42, -2.13, 2, 0)
  44. MovementLoopAddLocation(NPC, -24.2, -11.52, -4.81, 2, 0)
  45. MovementLoopAddLocation(NPC, -22.74, -11.79, -9.07, 2, math.random(10, 20))
  46. MovementLoopAddLocation(NPC, -23.98, -11.43, -15.5, 2, 0)
  47. MovementLoopAddLocation(NPC, -27.33, -11.53, -20.17, 2, 0)
  48. MovementLoopAddLocation(NPC, -33.6, -11.74, -25.64, 2, 0)
  49. MovementLoopAddLocation(NPC, -39.99, -11.78, -34.29, 2, math.random(10, 20))
  50. MovementLoopAddLocation(NPC, -43.66, -10.37, -35.93, 2, 0)
  51. MovementLoopAddLocation(NPC, -49.21, -10.38, -40.87, 2, 0)
  52. MovementLoopAddLocation(NPC, -53.17, -10.6, -47.88, 2, 0)
  53. MovementLoopAddLocation(NPC, -57.69, -11.52, -52.91, 2, 0)
  54. end