areefturtle427241.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427241.lua
  3. Script Purpose : Waypoint Path for areefturtle427241.lua
  4. Script Author : Rylec
  5. Script Date : 10-22-2019 09:51:39
  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, 21.89, -12.54, 255.48, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 32.53, -11.82, 261.06, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 9.83, -13.04, 280.34, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 23.52, -10.74, 267.43, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 10.9, -14.61, 276.34, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 17.89, -13.68, 272.71, 2, 0)
  23. MovementLoopAddLocation(NPC, 27.93, -13.13, 271.21, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 18.29, -14.36, 273.95, 2, 0)
  25. MovementLoopAddLocation(NPC, 14.64, -14.47, 274.91, 2, 0)
  26. MovementLoopAddLocation(NPC, 7.05, -14.5, 282.83, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 10.96, -12.1, 269.78, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 25.25, -11.53, 256.5, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 15.83, -12.11, 264.7, 2, math.random(10, 20))
  30. end