areefturtle427165.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427165.lua
  3. Script Purpose : Waypoint Path for areefturtle427165.lua
  4. Script Author : Rylec
  5. Script Date : 10-23-2019 07:03:17
  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, -26.88, -11.71, 270.85, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -40.7, -12.33, 270.58, 2, 0)
  19. MovementLoopAddLocation(NPC, -52.21, -12.02, 266.09, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -54.11, -13.32, 260.46, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -48.96, -13.2, 261.29, 2, 0)
  22. MovementLoopAddLocation(NPC, -36.29, -12.72, 261.91, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -54.31, -13.72, 250.23, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -52.09, -13.65, 252.18, 2, 0)
  25. MovementLoopAddLocation(NPC, -51.29, -13.66, 254.8, 2, 0)
  26. MovementLoopAddLocation(NPC, -49.12, -13.61, 256.46, 2, 0)
  27. MovementLoopAddLocation(NPC, -46.35, -14.27, 264.22, 2, 0)
  28. MovementLoopAddLocation(NPC, -43.54, -12.5, 268.40, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -32.53, -12, 272.39, 2, 0)
  30. end