atriggerfish425835.lua 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425835.lua
  3. Script Purpose : Waypoint Path for atriggerfish425835.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:48:18
  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, 42.75, -11.87, 43.38, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 39.99, -11.18, 45.22, 2, 0)
  19. MovementLoopAddLocation(NPC, 35.45, -10.53, 47.31, 2, 0)
  20. MovementLoopAddLocation(NPC, 25, -11.11, 49.82, 2, 0)
  21. MovementLoopAddLocation(NPC, 12.35, -12.54, 50.28, 2, 0)
  22. MovementLoopAddLocation(NPC, 9.75, -12.52, 49.22, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 6.39, -12.13, 56.82, 2, 0)
  24. MovementLoopAddLocation(NPC, 1.06, -11.36, 62.9, 2, 0)
  25. MovementLoopAddLocation(NPC, -3.31, -10.98, 68.29, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 31.66, -10.97, 76.68, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 26.98, -10.39, 73.2, 2, 0)
  28. MovementLoopAddLocation(NPC, 6.09, -11.49, 57.5, 2, 0)
  29. MovementLoopAddLocation(NPC, 1.79, -11.82, 54.16, 2, 0)
  30. MovementLoopAddLocation(NPC, -3.39, -11.81, 46.89, 2, 0)
  31. MovementLoopAddLocation(NPC, -6.41, -12.1, 43.52, 2, 0)
  32. MovementLoopAddLocation(NPC, -12.79, -13.36, 40.71, 2, 0)
  33. MovementLoopAddLocation(NPC, -16.13, -13.36, 41.6, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, -7.52, -13.04, 42.04, 2, 0)
  35. MovementLoopAddLocation(NPC, 2.03, -13.42, 48.86, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, -7.33, -12.71, 39.02, 2, 0)
  37. MovementLoopAddLocation(NPC, -10.52, -12.56, 33.87, 2, math.random(10, 20))
  38. MovementLoopAddLocation(NPC, 3.9, -13.76, 35.49, 2, 0)
  39. MovementLoopAddLocation(NPC, 10.22, -14.19, 36.86, 2, math.random(10, 20))
  40. MovementLoopAddLocation(NPC, 19.22, -13.36, 37.42, 2, 0)
  41. MovementLoopAddLocation(NPC, 30.35, -13.01, 39.9, 2, 0)
  42. MovementLoopAddLocation(NPC, 38.89, -12.19, 44.26, 2, 0)
  43. MovementLoopAddLocation(NPC, 41.14, -11.96, 44.25, 2, 0)
  44. end