atriggerfish425815.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425815.lua
  3. Script Purpose : Waypoint Path for atriggerfish425815.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 02:43:32
  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, 31.27, -11.01, -42.77, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 21.86, -11.76, -38.4, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 14.83, -11.76, -16.09, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 36.88, -12.45, -22.81, 2, 0)
  21. MovementLoopAddLocation(NPC, 44.44, -12, -27.36, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 18.46, -11.85, -43.51, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 12.97, -10.52, -64.27, 2, 0)
  24. MovementLoopAddLocation(NPC, 14.35, -10.6, -72.92, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 12.03, -11.08, -67.8, 2, 0)
  26. MovementLoopAddLocation(NPC, 12.11, -12.31, -23.59, 2, 0)
  27. MovementLoopAddLocation(NPC, 13.75, -12.61, -21.14, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 18.84, -13.27, -18.07, 2, 0)
  29. MovementLoopAddLocation(NPC, 21.32, -12.94, -14.11, 2, 0)
  30. MovementLoopAddLocation(NPC, 21.95, -12.76, -9.62, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 20.27, -12.8, -14.72, 2, 0)
  32. MovementLoopAddLocation(NPC, 16.96, -12.59, -18.94, 2, 0)
  33. MovementLoopAddLocation(NPC, -1.34, -11.77, -33.4, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, 24.09, -11.47, -39.14, 2, 0)
  35. end