areefturtle427021.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427021.lua
  3. Script Purpose : Waypoint Path for areefturtle427021.lua
  4. Script Author : Rylec
  5. Script Date : 11-08-2019 06:14:37
  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, -128.54, -13.55, 186.91, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -127.67, -14.42, 183.43, 2, 0)
  19. MovementLoopAddLocation(NPC, -123.3, -14.85, 179.31, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -133.89, -13.51, 177.19, 2, 0)
  21. MovementLoopAddLocation(NPC, -141.13, -13.58, 175.5, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -143.93, -14.04, 160.58, 2, 0)
  23. MovementLoopAddLocation(NPC, -144.81, -13.66, 149.7, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -129.35, -12.13, 153.45, 2, 0)
  25. MovementLoopAddLocation(NPC, -119.68, -11.8, 157.07, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -126.69, -12.33, 159.45, 2, 0)
  27. MovementLoopAddLocation(NPC, -146.62, -12.36, 175.58, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -129.09, -13.31, 176.37, 2, 0)
  29. MovementLoopAddLocation(NPC, -124.24, -14.79, 178.21, 2, 0)
  30. MovementLoopAddLocation(NPC, -123.14, -14.86, 179.43, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -128.33, -14.12, 182.63, 2, 0)
  32. MovementLoopAddLocation(NPC, -131.23, -13.27, 185.15, 2, 0)
  33. MovementLoopAddLocation(NPC, -130.39, -12.38, 209.1, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, -148.15, -13.43, 206.66, 2, 0)
  35. MovementLoopAddLocation(NPC, -148.52, -14.5, 194.2, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, -137.67, -14.69, 209.18, 2, math.random(10, 20))
  37. end