atriggerfish425792.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425792.lua
  3. Script Purpose : Waypoint Path for atriggerfish425792.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:17:58
  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.46, -11.96, -66.21, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 52.27, -11.95, -79.79, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 51.64, -11.88, -74.67, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 69.51, -11.87, -67.16, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 71.87, -11.96, -49.76, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 77.28, -12.02, -71.72, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 73.86, -11.96, -56.47, 2, 0)
  24. MovementLoopAddLocation(NPC, 72.38, -11.99, -44.18, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 71.1, -12.2, -47.83, 2, 0)
  26. MovementLoopAddLocation(NPC, 65.01, -12.06, -59.3, 2, 0)
  27. MovementLoopAddLocation(NPC, 62.39, -11.92, -65.83, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 71.72, -11.52, -50.95, 2, 0)
  29. MovementLoopAddLocation(NPC, 75.25, -11.94, -48.02, 2, 0)
  30. MovementLoopAddLocation(NPC, 77.98, -12.09, -46.02, 2, 0)
  31. MovementLoopAddLocation(NPC, 82.65, -12.02, -43.25, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 79.79, -11.88, -44.92, 2, 0)
  33. MovementLoopAddLocation(NPC, 78.59, -11.41, -46.24, 2, 0)
  34. MovementLoopAddLocation(NPC, 74.79, -11.53, -50.31, 2, 0)
  35. MovementLoopAddLocation(NPC, 73.4, -11.68, -53.11, 2, 0)
  36. end