atriggerfish425785.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425785.lua
  3. Script Purpose : Waypoint Path for atriggerfish425785.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:15:31
  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, 68.76, -11.89, -73.98, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 46.89, -11.94, -80.38, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 63.58, -11.9, -62.07, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 59.29, -11.19, -53.92, 2, 0)
  21. MovementLoopAddLocation(NPC, 51.55, -10.99, -45, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 61.12, -11.04, -47.86, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 60.56, -11.45, -55.19, 2, 0)
  24. MovementLoopAddLocation(NPC, 58.74, -11.65, -58.6, 2, 0)
  25. MovementLoopAddLocation(NPC, 54.16, -11.94, -64.17, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 61.13, -11.98, -62.06, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 42.72, -12.13, -75.49, 2, 0)
  28. MovementLoopAddLocation(NPC, 32.49, -11.97, -80.5, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 44.43, -11.96, -84.46, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 49.3, -11.96, -70.32, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 65.99, -11.92, -78.4, 2, math.random(10, 20))
  32. end