atriggerfish425786.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425786.lua
  3. Script Purpose : Waypoint Path for atriggerfish425786.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:15:51
  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, 101.96, -12.9, -29.52, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 97.5, -12.79, -37.01, 2, 0)
  19. MovementLoopAddLocation(NPC, 94.61, -12.24, -45.28, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 94.96, -12.46, -25.99, 2, 0)
  21. MovementLoopAddLocation(NPC, 93.89, -11.77, -14.02, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 96.63, -12.59, -23.94, 2, 0)
  23. MovementLoopAddLocation(NPC, 100.94, -12.99, -34.54, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 84.06, -12.95, -25.14, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 76.27, -11.75, -37.19, 2, 0)
  26. MovementLoopAddLocation(NPC, 73.93, -11.51, -39.14, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 81.23, -12.59, -30.57, 2, 0)
  28. MovementLoopAddLocation(NPC, 88.26, -12.32, -24.22, 2, 0)
  29. MovementLoopAddLocation(NPC, 96.56, -11.89, -19.2, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 87.8, -12.39, -30.87, 2, 0)
  31. MovementLoopAddLocation(NPC, 84.84, -12.1, -39.19, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 77.69, -11.99, -44.01, 2, 0)
  33. MovementLoopAddLocation(NPC, 71.77, -11.91, -50.24, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, 45.32, -12.03, -74.18, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, 73.68, -12.33, -47.73, 2, 0)
  36. MovementLoopAddLocation(NPC, 81.24, -12.83, -42.99, 2, 0)
  37. MovementLoopAddLocation(NPC, 88.98, -12.9, -40.82, 2, math.random(10, 20))
  38. end