atriggerfish425788.lua 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425788.lua
  3. Script Purpose : Waypoint Path for atriggerfish425788.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:16:28
  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.07, -12, -84.53, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 56.39, -11.89, -74.36, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 48.68, -12.08, -78.34, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 53.23, -11.74, -66.43, 2, 0)
  21. MovementLoopAddLocation(NPC, 55.41, -11.99, -62.66, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 67.87, -12.08, -75.17, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 56.6, -11.99, -74.99, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 77.8, -11.97, -74.03, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 66.75, -12.17, -72.92, 2, 0)
  26. MovementLoopAddLocation(NPC, 44.12, -12.02, -75.18, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 69.04, -12.05, -62.09, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 69.48, -11.95, -72.46, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 55.95, -12.02, -79.94, 2, 0)
  30. end