areefturtle427080.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427080.lua
  3. Script Purpose : Waypoint Path for areefturtle427080.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 12:37:30
  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, 10.68, -11.83, -36.97, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 16.18, -12.7, -34.89, 2, 0)
  19. MovementLoopAddLocation(NPC, 21.42, -13.03, -32.02, 2, 0)
  20. MovementLoopAddLocation(NPC, 26.75, -12.89, -29.67, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 27.8, -13.13, -0.35, 2, 0)
  22. MovementLoopAddLocation(NPC, 26.92, -12.89, 10.36, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 39.56, -13.23, -14.11, 2, 0)
  24. MovementLoopAddLocation(NPC, 42.04, -12.93, -21.46, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 39.17, -11.75, -12.1, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 34.26, -12.6, -14.59, 2, 0)
  27. MovementLoopAddLocation(NPC, 24.28, -14.27, -21.96, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 25.36, -13.72, -25.95, 2, 0)
  29. MovementLoopAddLocation(NPC, 28.27, -12.61, -31.26, 2, 0)
  30. MovementLoopAddLocation(NPC, 30.25, -12.39, -34.91, 2, 0)
  31. MovementLoopAddLocation(NPC, 35.02, -11.45, -42.7, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 30.26, -11.71, -41.15, 2, 0)
  33. MovementLoopAddLocation(NPC, 24.2, -11.98, -40.11, 2, 0)
  34. end