areefturtle427045.lua 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427045.lua
  3. Script Purpose : Waypoint Path for areefturtle427045.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 10:19:20
  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, -5.7, -11.82, -34.88, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -12.19, -11.91, -40.83, 2, 0)
  19. MovementLoopAddLocation(NPC, -18.45, -12.47, -45.66, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -13.9, -11.42, -51.99, 2, 0)
  21. MovementLoopAddLocation(NPC, -12.85, -11.21, -56.47, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -16.09, -11.47, -52.43, 2, 0)
  23. MovementLoopAddLocation(NPC, -18.74, -12.21, -48.22, 2, 0)
  24. MovementLoopAddLocation(NPC, -29.86, -11.53, -38.33, 2, 0)
  25. MovementLoopAddLocation(NPC, -38.85, -11.35, -34.68, 2, 0)
  26. MovementLoopAddLocation(NPC, -46.84, -10.66, -29.49, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -52.33, -10.2, -24.79, 2, 0)
  28. MovementLoopAddLocation(NPC, -63.76, -10.2, -16.33, 2, 0)
  29. MovementLoopAddLocation(NPC, -74.52, -10.14, -5.21, 2, 0)
  30. MovementLoopAddLocation(NPC, -79.88, -10.52, -1.07, 2, 0)
  31. MovementLoopAddLocation(NPC, -85.95, -11.82, 1.87, 2, 0)
  32. MovementLoopAddLocation(NPC, -89.01, -11.85, 1.8, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, -80.74, -11.39, -1.67, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, -76.71, -10.52, -2.16, 2, 0)
  35. MovementLoopAddLocation(NPC, -71.83, -10.34, -2.58, 2, 0)
  36. MovementLoopAddLocation(NPC, -53.49, -10.2, -9.79, 2, 0)
  37. MovementLoopAddLocation(NPC, -26.14, -10.54, -27.8, 2, 0)
  38. MovementLoopAddLocation(NPC, -18.01, -11.69, -31.9, 2, 0)
  39. MovementLoopAddLocation(NPC, -14.27, -11.7, -36.7, 2, math.random(10, 20))
  40. MovementLoopAddLocation(NPC, -12.55, -11.5, -14.16, 2, math.random(10, 20))
  41. end