atriggerfish425782.lua 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425782.lua
  3. Script Purpose : Waypoint Path for atriggerfish425782.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:14:27
  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, 56.56, -11.99, -58.09, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 61.36, -12.03, -54.83, 2, 0)
  19. MovementLoopAddLocation(NPC, 66.73, -12.06, -50.77, 2, 0)
  20. MovementLoopAddLocation(NPC, 78.3, -12.26, -42.05, 2, 0)
  21. MovementLoopAddLocation(NPC, 85.25, -12.03, -35.61, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 88.29, -12.74, -36.62, 2, 0)
  23. MovementLoopAddLocation(NPC, 91.48, -13, -38.65, 2, 0)
  24. MovementLoopAddLocation(NPC, 94.59, -13.06, -41.78, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 86.42, -12.44, -43.85, 2, 0)
  26. MovementLoopAddLocation(NPC, 79.72, -12.32, -44.83, 2, 0)
  27. MovementLoopAddLocation(NPC, 68.43, -12, -49.9, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 65.79, -11.93, -51.87, 2, 0)
  29. MovementLoopAddLocation(NPC, 60.05, -11.21, -54.43, 2, 0)
  30. MovementLoopAddLocation(NPC, 49.25, -11.01, -60.09, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 46.9, -11.98, -82.33, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 66.01, -11.93, -68.19, 2, math.random(10, 20))
  33. end