atriggerfish425796.lua 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425796.lua
  3. Script Purpose : Waypoint Path for atriggerfish425796.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 12:28:19
  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, 19.11, -11.9, -23.45, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 17.56, -11.42, -28.4, 2, 0)
  19. MovementLoopAddLocation(NPC, 15.69, -11.33, -32.48, 2, 0)
  20. MovementLoopAddLocation(NPC, 10.71, -11.75, -39.71, 2, 0)
  21. MovementLoopAddLocation(NPC, 8.19, -12.02, -47.24, 2, 0)
  22. MovementLoopAddLocation(NPC, 6.73, -12.26, -51.04, 2, 0)
  23. MovementLoopAddLocation(NPC, 3.81, -13, -56.62, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 11.71, -12.43, -59.87, 2, 0)
  25. MovementLoopAddLocation(NPC, 14.97, -10.63, -63.5, 2, 0)
  26. MovementLoopAddLocation(NPC, 16.99, -10.63, -64.99, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 20.9, -11.15, -57.21, 2, 0)
  28. MovementLoopAddLocation(NPC, 31.71, -11.57, -39.92, 2, 0)
  29. MovementLoopAddLocation(NPC, 37.06, -12.95, -26.98, 2, 0)
  30. MovementLoopAddLocation(NPC, 39.05, -13.45, -23.05, 2, 0)
  31. MovementLoopAddLocation(NPC, 40.44, -13.85, -19.62, 2, 0)
  32. MovementLoopAddLocation(NPC, 43.6, -13.94, -14.91, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 21.68, -12.54, -12.56, 2, 0)
  34. MovementLoopAddLocation(NPC, 16.07, -12.26, -12.81, 2, 4)
  35. MovementLoopAddLocation(NPC, 20.66, -13.33, -17.74, 2, 0)
  36. MovementLoopAddLocation(NPC, 22.03, -12.04, -28.84, 2, math.random(10, 20))
  37. MovementLoopAddLocation(NPC, 12.17, -11.46, -31.22, 2, 0)
  38. MovementLoopAddLocation(NPC, 7.65, -11.4, -31.36, 2, 0)
  39. MovementLoopAddLocation(NPC, -0.15, -11.78, -31.92, 2, math.random(10, 20))
  40. end