atriggerfish425762.lua 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425762.lua
  3. Script Purpose : Waypoint Path for atriggerfish425762.lua
  4. Script Author : Rylec
  5. Script Date : 11-14-2019 09:00:40
  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, -145.48, -14, 23.27, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -143.03, -13.69, 24.73, 2, 0)
  19. MovementLoopAddLocation(NPC, -136.36, -11.42, 27.8, 2, 0)
  20. MovementLoopAddLocation(NPC, -129.02, -11.57, 28, 2, 0)
  21. MovementLoopAddLocation(NPC, -133.21, -11.97, 33.53, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -131.58, -12, 21.23, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -135.01, -12.43, 32.03, 2, 0)
  24. MovementLoopAddLocation(NPC, -135.83, -12.85, 43.6, 2, 0)
  25. MovementLoopAddLocation(NPC, -137.66, -13.04, 47.83, 2, 0)
  26. MovementLoopAddLocation(NPC, -142.37, -12.85, 51.73, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -145.13, -13.57, 47.75, 2, 0)
  28. MovementLoopAddLocation(NPC, -145.4, -14, 37.73, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -145.07, -13.63, 47.74, 2, 0)
  30. MovementLoopAddLocation(NPC, -130.05, -12.92, 60.17, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -129.91, -12.4, 53.32, 2, 0)
  32. MovementLoopAddLocation(NPC, -124.01, -10.98, 35.77, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, -128.35, -10.67, 39.49, 2, 0)
  34. MovementLoopAddLocation(NPC, -139.6, -11.36, 60.58, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, -133.63, -12.56, 54.24, 2, 0)
  36. MovementLoopAddLocation(NPC, -133.12, -12.83, 51.77, 2, math.random(10, 20))
  37. MovementLoopAddLocation(NPC, -134.55, -11.82, 68.24, 2, 0)
  38. MovementLoopAddLocation(NPC, -130.54, -11.73, 73.62, 2, math.random(10, 20))
  39. MovementLoopAddLocation(NPC, -134.93, -12.44, 55.23, 2, math.random(10, 20))
  40. MovementLoopAddLocation(NPC, -132.9, -12.73, 58.85, 2, 0)
  41. MovementLoopAddLocation(NPC, -129.92, -12.96, 62.15, 2, math.random(10, 20))
  42. MovementLoopAddLocation(NPC, -144.17, -13.59, 49.58, 2, 0)
  43. MovementLoopAddLocation(NPC, -146.61, -14.29, 50.31, 2, 0)
  44. MovementLoopAddLocation(NPC, -146.88, -13.96, 48.79, 2, math.random(10, 20))
  45. end