atriggerfish426173.lua 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish426173.lua
  3. Script Purpose : Waypoint Path for atriggerfish426173.lua
  4. Script Author : Rylec
  5. Script Date : 10-23-2019 07:03:08
  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, -62.25, -14.97, 267.58, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -62.31, -14.55, 264.66, 2, 0)
  19. MovementLoopAddLocation(NPC, -62.4, -13.9, 262.02, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -63.65, -13.88, 265.13, 2, 0)
  21. MovementLoopAddLocation(NPC, -64.27, -13.52, 267.47, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -62.19, -13.4, 264.15, 2, 0)
  23. MovementLoopAddLocation(NPC, -60.29, -12.36, 261.83, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -48.33, -12.38, 273.19, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -66.34, -12.26, 253.17, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -64.26, -12.28, 247.59, 2, math.random(10, 20))
  27. end