atriggerfish425834.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425834.lua
  3. Script Purpose : Waypoint Path for atriggerfish425834.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:47:49
  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, 12.42, -13.96, 21.45, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 16.56, -13.85, 35.3, 2, 0)
  19. MovementLoopAddLocation(NPC, 21.51, -13.12, 48.35, 2, 0)
  20. MovementLoopAddLocation(NPC, 21.17, -12.8, 55.5, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 3.94, -12.95, 48.08, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 26.2, -13.01, 44.14, 2, 0)
  23. MovementLoopAddLocation(NPC, 37.59, -12.86, 41.46, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 18.44, -13.38, 39.56, 2, 0)
  25. MovementLoopAddLocation(NPC, 12.3, -13.82, 37.57, 2, 0)
  26. MovementLoopAddLocation(NPC, 6.54, -13.9, 34.77, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 13.9, -13.94, 32.77, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 16.68, -13.4, 29.78, 2, 0)
  29. MovementLoopAddLocation(NPC, 21.32, -13.65, 27.84, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 13.06, -13.74, 19.78, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 5.35, -13.55, 15.99, 2, math.random(10, 20))
  32. end