areefturtle427085.lua 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427085.lua
  3. Script Purpose : Waypoint Path for areefturtle427085.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 02:41:55
  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, 9.75, -11.07, -70.47, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 1.15, -11.24, -72.69, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 0.63, -11.48, -65.37, 2, 0)
  20. MovementLoopAddLocation(NPC, 1.48, -11.84, -54.91, 2, 0)
  21. MovementLoopAddLocation(NPC, 2.34, -11.75, -50.89, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 1.16, -11.49, -55.1, 2, 0)
  23. MovementLoopAddLocation(NPC, -0.97, -11.01, -71.05, 2, 0)
  24. MovementLoopAddLocation(NPC, -2.74, -11.36, -78.23, 2, 0)
  25. MovementLoopAddLocation(NPC, -4.78, -12.45, -83.57, 2, 0)
  26. MovementLoopAddLocation(NPC, -7.13, -12.81, -88.41, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -2.22, -11.73, -81.72, 2, 0)
  28. MovementLoopAddLocation(NPC, 0.16, -11.81, -74.14, 2, 0)
  29. MovementLoopAddLocation(NPC, 0.22, -11.66, -72.5, 2, 0)
  30. MovementLoopAddLocation(NPC, -0.89, -11.67, -67.31, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 2.22, -12.1, -47.12, 2, 0)
  32. MovementLoopAddLocation(NPC, 2.49, -12.64, -42.52, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 9.6, -12.14, -40.16, 2, 0)
  34. MovementLoopAddLocation(NPC, 14.49, -11.87, -37.46, 2, 0)
  35. MovementLoopAddLocation(NPC, 19.24, -11.79, -32.04, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, 18.35, -11.38, -37.52, 2, 0)
  37. MovementLoopAddLocation(NPC, 15.09, -11.19, -50.94, 2, 0)
  38. MovementLoopAddLocation(NPC, 13.58, -11, -62.02, 2, 0)
  39. MovementLoopAddLocation(NPC, 12.59, -10.52, -66.9, 2, math.random(10, 20))
  40. end