atriggerfish426177.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish426177.lua
  3. Script Purpose : Waypoint Path for atriggerfish426177.lua
  4. Script Author : Rylec
  5. Script Date : 10-23-2019 07:03:31
  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, -36.25, -10.08, 252.08, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -34, -10.28, 262.04, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -28.04, -14.6, 278.72, 2, 0)
  20. MovementLoopAddLocation(NPC, -28.08, -14.84, 280.44, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -28.2, -11.62, 267.55, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -66.12, -12.35, 264.72, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -48.26, -12.32, 267.51, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -58.22, -12.25, 257.53, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -40.35, -11.6, 257.45, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -76.34, -12.27, 251.83, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -58.2, -12.24, 267.55, 2, math.random(10, 20))
  28. end