atriggerfish425817.lua 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425817.lua
  3. Script Purpose : Waypoint Path for atriggerfish425817.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 10:24:54
  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, -18.04, -14.98, 30.79, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -2.94, -13.66, 30.09, 2, 0)
  19. MovementLoopAddLocation(NPC, 35.69, -12.47, 27.54, 2, 0)
  20. MovementLoopAddLocation(NPC, 40.5, -12.32, 27.04, 2, 0)
  21. MovementLoopAddLocation(NPC, 44.98, -11.88, 27.01, 2, 0)
  22. MovementLoopAddLocation(NPC, 47.34, -11.26, 27.33, 2, 0)
  23. MovementLoopAddLocation(NPC, 49.09, -11.06, 28.01, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 46.74, -11.67, 21.98, 2, 0)
  25. MovementLoopAddLocation(NPC, 46.02, -12.95, 11.72, 2, 0)
  26. MovementLoopAddLocation(NPC, 47.31, -13.05, 8.94, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 32.5, -13.65, 26.65, 2, 0)
  28. MovementLoopAddLocation(NPC, 22.33, -13.84, 43.38, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 18.62, -14.07, 42.59, 2, 0)
  30. MovementLoopAddLocation(NPC, 15.79, -14.04, 41.53, 2, 0)
  31. MovementLoopAddLocation(NPC, -0.54, -13.94, 36.76, 2, 0)
  32. MovementLoopAddLocation(NPC, -8.75, -14.39, 35, 2, 0)
  33. MovementLoopAddLocation(NPC, -12.11, -15.04, 33.48, 2, 0)
  34. MovementLoopAddLocation(NPC, -13.55, -15, 31.62, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, -6.95, -13.19, 30.45, 2, 0)
  36. MovementLoopAddLocation(NPC, -5.92, -12.48, 30.49, 2, 0)
  37. MovementLoopAddLocation(NPC, -4.32, -12.4, 31.7, 2, math.random(10, 20))
  38. MovementLoopAddLocation(NPC, -1.48, -12.87, 32.36, 2, 0)
  39. MovementLoopAddLocation(NPC, 7.33, -13.26, 34.11, 2, 0)
  40. MovementLoopAddLocation(NPC, 10.77, -13.34, 36.32, 2, 0)
  41. MovementLoopAddLocation(NPC, 14.97, -13.42, 37.18, 2, 0)
  42. MovementLoopAddLocation(NPC, 26.01, -13.79, 40.33, 2, math.random(10, 20))
  43. MovementLoopAddLocation(NPC, 16.73, -13.47, 32.63, 2, 0)
  44. MovementLoopAddLocation(NPC, 16.12, -12.63, 31.96, 2, 0)
  45. MovementLoopAddLocation(NPC, 16.05, -14.16, 30.15, 2, 0)
  46. MovementLoopAddLocation(NPC, 12.06, -13.92, 24.48, 2, math.random(10, 20))
  47. MovementLoopAddLocation(NPC, 4.78, -14.06, 28.13, 2, 0)
  48. MovementLoopAddLocation(NPC, -3.42, -14.08, 29.63, 2, 0)
  49. MovementLoopAddLocation(NPC, -13.58, -14.82, 29.68, 2, 0)
  50. end