atriggerfish425778.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425778.lua
  3. Script Purpose : Waypoint Path for atriggerfish425778.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:13:07
  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, 32.63, -11.98, -80.37, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 61.16, -11.97, -68.31, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 46.66, -12, -83.59, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 39.7, -11.96, -84.41, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 55.39, -11.17, -57.11, 2, 0)
  22. MovementLoopAddLocation(NPC, 56.49, -11.01, -52.05, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 58.93, -11.48, -56.78, 2, 0)
  24. MovementLoopAddLocation(NPC, 65.99, -11.98, -78.43, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 54.98, -12, -80.14, 2, 0)
  26. MovementLoopAddLocation(NPC, 31.41, -11.93, -81.16, 2, 0)
  27. MovementLoopAddLocation(NPC, 27.89, -11.95, -82.37, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 31.13, -12.18, -81.1, 2, 0)
  29. MovementLoopAddLocation(NPC, 58.86, -11.94, -74.3, 2, math.random(10, 20))
  30. end