atriggerfish425771.lua 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425771.lua
  3. Script Purpose : Waypoint Path for atriggerfish425771.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 10:19:00
  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, -30.47, -11.99, 17.17, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -26.42, -11.7, 30.73, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -31.33, -12.63, 29.43, 2, 0)
  20. MovementLoopAddLocation(NPC, -35.13, -13.3, 27.57, 2, 0)
  21. MovementLoopAddLocation(NPC, -41.91, -13.7, 21.76, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -38.81, -11.91, 19.81, 2, 0)
  23. MovementLoopAddLocation(NPC, -29.29, -12.04, 15.59, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -34.66, -10.68, 3.62, 2, 0)
  25. MovementLoopAddLocation(NPC, -36.22, -10.23, -3.47, 2, 0)
  26. MovementLoopAddLocation(NPC, -36.81, -10.56, -10.57, 2, 0)
  27. MovementLoopAddLocation(NPC, -38.86, -10.97, -16.48, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -30.57, -11.06, -19.53, 2, 0)
  29. MovementLoopAddLocation(NPC, -8.12, -11.43, -31.51, 2, 0)
  30. MovementLoopAddLocation(NPC, -2.79, -12.01, -34.77, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -19.26, -12.12, -35.99, 2, 0)
  32. MovementLoopAddLocation(NPC, -25.39, -13.82, -37.64, 2, 0)
  33. MovementLoopAddLocation(NPC, -28.95, -13.55, -37.04, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, -34.33, -13.01, -33, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, -26.04, -12.51, -26.34, 2, 0)
  36. MovementLoopAddLocation(NPC, -18.05, -12.13, -15.03, 2, math.random(10, 20))
  37. MovementLoopAddLocation(NPC, -23.08, -11.67, -7.21, 2, 0)
  38. MovementLoopAddLocation(NPC, -26.38, -11.24, -1.24, 2, 0)
  39. MovementLoopAddLocation(NPC, -29.28, -11.22, 2.76, 2, 0)
  40. MovementLoopAddLocation(NPC, -31.94, -11.78, 7.55, 2, 0)
  41. MovementLoopAddLocation(NPC, -33.42, -12.24, 13.37, 2, math.random(10, 20))
  42. end