areefturtle427096.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427096.lua
  3. Script Purpose : Waypoint Path for areefturtle427096.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 10:26:52
  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, 35.7, -12.26, 27.83, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 18.65, -13.67, 37.61, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 37.97, -12.61, 27.04, 2, 0)
  20. MovementLoopAddLocation(NPC, 41.87, -12.3, 24.03, 2, 0)
  21. MovementLoopAddLocation(NPC, 47.01, -11.72, 21.95, 2, 0)
  22. MovementLoopAddLocation(NPC, 50.7, -11.73, 21.27, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 44.14, -12.14, 22.64, 2, 0)
  24. MovementLoopAddLocation(NPC, 35.56, -12.9, 27.14, 2, 0)
  25. MovementLoopAddLocation(NPC, -0.8, -12.75, 49.59, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 15.98, -13.23, 39.99, 2, 0)
  27. MovementLoopAddLocation(NPC, 29.18, -12.29, 33.67, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 33.91, -11.71, 37.39, 2, 0)
  29. MovementLoopAddLocation(NPC, 41.76, -10.36, 39.6, 2, 0)
  30. MovementLoopAddLocation(NPC, 46.24, -10.2, 39.86, 2, 0)
  31. MovementLoopAddLocation(NPC, 57.61, -12.07, 42.94, 2, 0)
  32. MovementLoopAddLocation(NPC, 63.09, -12.5, 43.42, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 56.16, -11.72, 65.31, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, 54.74, -10.37, 59.01, 2, 0)
  35. MovementLoopAddLocation(NPC, 47.61, -10.45, 42.34, 2, 0)
  36. MovementLoopAddLocation(NPC, 44.43, -11.71, 34.71, 2, 0)
  37. MovementLoopAddLocation(NPC, 40.19, -11.98, 32.29, 2, math.random(10, 20))
  38. end