atriggerfish425774.lua 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425774.lua
  3. Script Purpose : Waypoint Path for atriggerfish425774.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 10:19:59
  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, -77.23, -11.07, 0.99, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -75.95, -10.5, -1.38, 2, 0)
  19. MovementLoopAddLocation(NPC, -70.62, -10.31, -4.15, 2, 0)
  20. MovementLoopAddLocation(NPC, -63.91, -10.26, -10.64, 2, 0)
  21. MovementLoopAddLocation(NPC, -59.4, -10.16, -20.36, 2, 0)
  22. MovementLoopAddLocation(NPC, -28.42, -12.09, -49.32, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -23.94, -12.28, -47.52, 2, 0)
  24. MovementLoopAddLocation(NPC, -16, -11.99, -42.34, 2, 0)
  25. MovementLoopAddLocation(NPC, -6.62, -12.1, -31.23, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -13.88, -11.99, -36.72, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -19.59, -12.12, -38.35, 2, 0)
  28. MovementLoopAddLocation(NPC, -28.73, -12.89, -43.07, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -26.02, -12.66, -46.51, 2, 0)
  30. MovementLoopAddLocation(NPC, -17.62, -11.59, -51.34, 2, 0)
  31. MovementLoopAddLocation(NPC, -12.06, -10.99, -56.36, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, -14.89, -11.07, -48.33, 2, 0)
  33. MovementLoopAddLocation(NPC, -22.32, -10.47, -24.47, 2, 0)
  34. MovementLoopAddLocation(NPC, -25.67, -11.11, -9.45, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, -26.93, -11.21, -0.33, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, -34.06, -11.45, 8.76, 2, 0)
  37. MovementLoopAddLocation(NPC, -37.28, -12.02, 14.62, 2, 0)
  38. MovementLoopAddLocation(NPC, -38.86, -13.11, 19.32, 2, 0)
  39. MovementLoopAddLocation(NPC, -36.99, -14.01, 22.16, 2, math.random(10, 20))
  40. MovementLoopAddLocation(NPC, -41.31, -13.02, 18.21, 2, 0)
  41. MovementLoopAddLocation(NPC, -44.2, -12.26, 16.4, 2, 0)
  42. MovementLoopAddLocation(NPC, -46.56, -12.1, 16.51, 2, math.random(10, 20))
  43. MovementLoopAddLocation(NPC, -48.81, -11.21, 16.15, 2, 0)
  44. MovementLoopAddLocation(NPC, -52.05, -10.5, 16.22, 2, 0)
  45. MovementLoopAddLocation(NPC, -75.42, -10.6, 4.3, 2, 0)
  46. MovementLoopAddLocation(NPC, -77.61, -10.81, 1.64, 2, 0)
  47. MovementLoopAddLocation(NPC, -79.93, -11.18, -12.04, 2, math.random(10, 20))
  48. end