atriggerfish425808.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425808.lua
  3. Script Purpose : Waypoint Path for atriggerfish425808.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 02:40:40
  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, 37.65, -11.97, -9.67, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 42.68, -12.35, -14.44, 2, 0)
  19. MovementLoopAddLocation(NPC, 48.27, -12.17, -18.35, 2, 0)
  20. MovementLoopAddLocation(NPC, 51.73, -12.06, -21.78, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 44.68, -12.89, -16.35, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 27.11, -13.36, -24.1, 2, 0)
  23. MovementLoopAddLocation(NPC, 22.44, -13.13, -26.83, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 25.34, -13.77, -24.31, 2, 0)
  25. MovementLoopAddLocation(NPC, 34.06, -14.18, -19.85, 2, 0)
  26. MovementLoopAddLocation(NPC, 37.76, -14.32, -17.85, 2, 0)
  27. MovementLoopAddLocation(NPC, 44.46, -13.5, -13.04, 2, 0)
  28. MovementLoopAddLocation(NPC, 48.02, -13.56, -11.92, 2, 0)
  29. MovementLoopAddLocation(NPC, 53.54, -14.06, -10.75, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 48.48, -13.94, -9.95, 2, 0)
  31. MovementLoopAddLocation(NPC, 34.97, -14.07, -8.12, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 38.64, -14.29, -9.67, 2, 0)
  33. MovementLoopAddLocation(NPC, 50.26, -13.87, -10.45, 2, math.random(10, 20))
  34. end