atriggerfish425777.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425777.lua
  3. Script Purpose : Waypoint Path for atriggerfish425777.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:12:47
  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, 61.36, -11.65, -76.11, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 63.55, -11.1, -82.74, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 68.42, -11.97, -47.8, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 65.95, -11.47, -49.14, 2, 0)
  21. MovementLoopAddLocation(NPC, 60.12, -11.27, -52.01, 2, 0)
  22. MovementLoopAddLocation(NPC, 54.12, -10.98, -54.15, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 54.03, -11.41, -67.04, 2, 0)
  24. MovementLoopAddLocation(NPC, 56.42, -11.92, -80.44, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 69.66, -11.79, -72.23, 2, 0)
  26. MovementLoopAddLocation(NPC, 77.7, -11.54, -69.3, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 49.27, -11.92, -78.38, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 54.24, -11.99, -74.35, 2, math.random(10, 20))
  29. end