atriggerfish426184.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish426184.lua
  3. Script Purpose : Waypoint Path for atriggerfish426184.lua
  4. Script Author : Rylec
  5. Script Date : 10-23-2019 07:03:48
  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, -46.26, -12.18, 272.01, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -47.92, -13.56, 274.78, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -41.16, -14.02, 275.98, 2, 0)
  20. MovementLoopAddLocation(NPC, -34.96, -14.01, 277.52, 2, 0)
  21. MovementLoopAddLocation(NPC, -24.07, -13.63, 278.97, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -31.67, -12.92, 270.34, 2, 0)
  23. MovementLoopAddLocation(NPC, -31.99, -11.66, 267.7, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -19.62, -13.51, 280.28, 2, 0)
  25. MovementLoopAddLocation(NPC, -14.14, -13.6, 284.79, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -20, -14.31, 275.34, 2, 0)
  27. MovementLoopAddLocation(NPC, -31.05, -13.45, 278.9, 2, 0)
  28. MovementLoopAddLocation(NPC, -33.46, -13.23, 276.84, 2, 0)
  29. MovementLoopAddLocation(NPC, -40.27, -12.31, 273.44, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, -42.25, -12.41, 274.8, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -37.02, -14.05, 272.07, 2, 0)
  32. MovementLoopAddLocation(NPC, -30.79, -13.56, 276.49, 2, 0)
  33. MovementLoopAddLocation(NPC, -26, -14.94, 276.22, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, -20.81, -14.42, 278.28, 2, 0)
  35. MovementLoopAddLocation(NPC, -14.03, -12.29, 279.08, 2, math.random(10, 20))
  36. end