atriggerfish425779.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425779.lua
  3. Script Purpose : Waypoint Path for atriggerfish425779.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:13: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, 92.33, -11.96, -37.66, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 87.59, -11.95, -43.58, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 93.17, -12.98, -22.82, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 85.21, -12.9, -29.54, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 83.2, -12.57, -32.46, 2, 0)
  22. MovementLoopAddLocation(NPC, 77.85, -10.98, -36.38, 2, 0)
  23. MovementLoopAddLocation(NPC, 74.53, -10.48, -37.85, 2, 0)
  24. MovementLoopAddLocation(NPC, 70.56, -10.1, -39.67, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 73.49, -10.3, -40.08, 2, 0)
  26. MovementLoopAddLocation(NPC, 78.68, -10.38, -39.25, 2, 0)
  27. MovementLoopAddLocation(NPC, 89.27, -12.3, -37.21, 2, 0)
  28. MovementLoopAddLocation(NPC, 94.78, -12.94, -35.73, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 94.96, -12.76, -39.66, 2, 0)
  30. MovementLoopAddLocation(NPC, 94.58, -11.67, -42.22, 2, 0)
  31. MovementLoopAddLocation(NPC, 92.8, -11.41, -44.22, 2, math.random(10, 20))
  32. end