areefturtle427014.lua 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427014.lua
  3. Script Purpose : Waypoint Path for areefturtle427014.lua
  4. Script Author : Rylec
  5. Script Date : 10-23-2019 07:03:53
  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, -48.31, -13.79, 256.58, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -62.36, -14.7, 266.1, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -71.29, -15.18, 262.18, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -64.52, -14.77, 267.37, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -67.14, -14.81, 264.85, 2, 0)
  22. MovementLoopAddLocation(NPC, -75.68, -14.12, 252.46, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -60.38, -12.05, 248.86, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -57.73, -12.03, 252.47, 2, 0)
  25. MovementLoopAddLocation(NPC, -54.23, -12.43, 270.52, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -41.48, -12.42, 265.1, 2, math.random(10, 20))
  27. end