atriggerfish425814.lua 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425814.lua
  3. Script Purpose : Waypoint Path for atriggerfish425814.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 02:43:01
  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, 31.33, -13.05, -9.67, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 26.74, -13.11, -21.05, 2, 0)
  19. MovementLoopAddLocation(NPC, 23.28, -13.21, -33.53, 2, 0)
  20. MovementLoopAddLocation(NPC, 18.44, -12.52, -42.32, 2, 0)
  21. MovementLoopAddLocation(NPC, 16.37, -12.36, -49.39, 2, 0)
  22. MovementLoopAddLocation(NPC, 9.1, -11.83, -67.44, 2, 0)
  23. MovementLoopAddLocation(NPC, 4.01, -11.45, -76.46, 2, 0)
  24. MovementLoopAddLocation(NPC, 0.78, -11.2, -84.72, 2, 0)
  25. MovementLoopAddLocation(NPC, -1.82, -11.65, -91.53, 2, 0)
  26. MovementLoopAddLocation(NPC, -3.51, -11.93, -95.82, 2, 0)
  27. MovementLoopAddLocation(NPC, -3.5099, -11.92, -95.74, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -3.37, -11.15, -91.26, 2, 0)
  29. MovementLoopAddLocation(NPC, -1.99, -10.47, -80.08, 2, 0)
  30. MovementLoopAddLocation(NPC, -0.47, -11.02, -71.16, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -1.99, -11.9, -44.43, 2, 0)
  32. MovementLoopAddLocation(NPC, -4.88, -11.87, -36.29, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 5.18, -12.09, -26.92, 2, 0)
  34. MovementLoopAddLocation(NPC, 13.5, -12.39, -21.27, 2, 0)
  35. MovementLoopAddLocation(NPC, 17.95, -12.57, -19.12, 2, 0)
  36. MovementLoopAddLocation(NPC, 27.09, -12.94, -10.25, 2, math.random(10, 20))
  37. MovementLoopAddLocation(NPC, 38.32, -12.64, -26.78, 2, 0)
  38. MovementLoopAddLocation(NPC, 42.37, -12.02, -30.95, 2, math.random(10, 20))
  39. MovementLoopAddLocation(NPC, 40.76, -12.42, -27.11, 2, 0)
  40. end