areefturtle427102.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427102.lua
  3. Script Purpose : Waypoint Path for areefturtle427102.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:21: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, 12.52, -11.65, 43.22, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 23.69, -11.98, 36.39, 2, 0)
  19. MovementLoopAddLocation(NPC, 27.69, -12.57, 33.17, 2, 0)
  20. MovementLoopAddLocation(NPC, 30.79, -12.69, 29.81, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 38.97, -13.14, 20.14, 2, 0)
  22. MovementLoopAddLocation(NPC, 47.67, -12.78, 12.26, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 24.1, -12.78, 20.61, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 26.56, -12.58, 16.47, 2, 0)
  25. MovementLoopAddLocation(NPC, 32.03, -12.93, 9.82, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 26.17, -12.45, 14.2, 2, 0)
  27. MovementLoopAddLocation(NPC, 13.7, -12.32, 26.79, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 2.42, -12.81, 27.9, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 8.16, -11.49, 36.3, 2, 0)
  30. end