atriggerfish425753.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425753.lua
  3. Script Purpose : Waypoint Path for atriggerfish425753.lua
  4. Script Author : Rylec
  5. Script Date : 11-08-2019 06:18:30
  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, -97.96, -11.98, 131.01, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -126.62, -12.01, 149.82, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -112.41, -11.94, 168.24, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -118.7, -12.54, 171.32, 2, 0)
  21. MovementLoopAddLocation(NPC, -128.58, -13.3, 179.22, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -129.15, -13.24, 168.59, 2, 0)
  23. MovementLoopAddLocation(NPC, -136.64, -12.68, 130.71, 2, 0)
  24. MovementLoopAddLocation(NPC, -141.31, -12.64, 106.38, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -144.23, -12.45, 91.2, 2, 0)
  26. MovementLoopAddLocation(NPC, -146.59, -12.74, 82.71, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -134.55, -11.52, 88.54, 2, 0)
  28. MovementLoopAddLocation(NPC, -128.81, -11.48, 90.36, 2, 0)
  29. MovementLoopAddLocation(NPC, -126.71, -11.94, 101.25, 2, math.random(10, 20))
  30. end