areefturtle427070.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427070.lua
  3. Script Purpose : Waypoint Path for areefturtle427070.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 12:28:23
  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, 19.29, -12.77, -20.49, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 36.21, -12.68, -15.85, 2, 0)
  19. MovementLoopAddLocation(NPC, 41.96, -12.25, -12.5, 2, 0)
  20. MovementLoopAddLocation(NPC, 49.66, -11.81, -12.4, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 48.14, -12.2, -16.49, 2, 0)
  22. MovementLoopAddLocation(NPC, 40.59, -12.68, -28.89, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 28.4, -13.11, -15.12, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 40.54, -12.72, -25.98, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 42.03, -12.49, -16.68, 2, 0)
  26. MovementLoopAddLocation(NPC, 40.74, -12.62, -13.58, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 35.37, -12.36, -1.69, 2, 0)
  28. MovementLoopAddLocation(NPC, 34.34, -12.74, 1.73, 2, 0)
  29. MovementLoopAddLocation(NPC, 34.25, -12.83, 4.23, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 21.42, -13.15, -17.13, 2, 0)
  31. end