areefturtle427091.lua 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427091.lua
  3. Script Purpose : Waypoint Path for areefturtle427091.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 10:24:33
  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, 19.14, -12.71, 18.21, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 16.06, -12.82, 21.82, 2, 0)
  19. MovementLoopAddLocation(NPC, 13.08, -12.64, 27.53, 2, 0)
  20. MovementLoopAddLocation(NPC, 10, -11.75, 37.09, 2, 0)
  21. MovementLoopAddLocation(NPC, 8.12, -11.68, 41.13, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 1.48, -12.67, 40.86, 2, 0)
  23. MovementLoopAddLocation(NPC, -2.1, -13.07, 40.33, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 6.99, -12.85, 50.29, 2, 0)
  25. MovementLoopAddLocation(NPC, 23.67, -12.26, 61.74, 2, 0)
  26. MovementLoopAddLocation(NPC, 32.53, -11.81, 71.67, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 26.18, -12.12, 54.61, 2, 0)
  28. MovementLoopAddLocation(NPC, 23.35, -13.63, 43.77, 2, 0)
  29. MovementLoopAddLocation(NPC, 22.62, -13.75, 40.19, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 20.3, -13.46, 34.59, 2, 0)
  31. MovementLoopAddLocation(NPC, 19.19, -13.72, 30.41, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 9.42, -13.25, 31.86, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 5.8, -13.73, 40.22, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, 10.48, -14.16, 41.15, 2, 0)
  35. MovementLoopAddLocation(NPC, 22.42, -13.72, 40.22, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, 15.48, -13.69, 48.42, 2, 0)
  37. MovementLoopAddLocation(NPC, 12.78, -13.27, 52.76, 2, 0)
  38. MovementLoopAddLocation(NPC, 12.36, -12.71, 56.17, 2, math.random(10, 20))
  39. MovementLoopAddLocation(NPC, 25.67, -10.51, 77.7, 2, math.random(10, 20))
  40. end