atriggerfish426130.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish426130.lua
  3. Script Purpose : Waypoint Path for atriggerfish426130.lua
  4. Script Author : Rylec
  5. Script Date : 11-03-2019 05:46:23
  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, -124.37, -13.67, 218.93, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -91.91, -13.43, 224.18, 2, 0)
  19. MovementLoopAddLocation(NPC, -89.12, -12.38, 224.99, 2, 0)
  20. MovementLoopAddLocation(NPC, -86.14, -12.48, 230.49, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -93.01, -13.19, 224.81, 2, 0)
  22. MovementLoopAddLocation(NPC, -101.77, -13.67, 201.94, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -102.03, -13.65, 201.08, 2, 0)
  24. MovementLoopAddLocation(NPC, -104.33, -12.65, 200.06, 2, 0)
  25. MovementLoopAddLocation(NPC, -112.68, -12.48, 200.03, 2, 0)
  26. MovementLoopAddLocation(NPC, -114.47, -12.4, 208.51, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -113.34, -12.46, 215.79, 2, 0)
  28. MovementLoopAddLocation(NPC, -99.16, -12.52, 215.99, 2, 0)
  29. MovementLoopAddLocation(NPC, -83.96, -12.39, 223.04, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, -82.64, -12.52, 219.85, 2, 0)
  31. MovementLoopAddLocation(NPC, -81.51, -11.71, 210.33, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, -81.95, -11.89, 208.09, 2, 0)
  33. MovementLoopAddLocation(NPC, -84.25, -11.82, 203.7, 2, 0)
  34. MovementLoopAddLocation(NPC, -95.66, -12.41, 191.39, 2, 0)
  35. MovementLoopAddLocation(NPC, -99.24, -12.91, 185.17, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, -100.13, -12.58, 194.81, 2, 0)
  37. MovementLoopAddLocation(NPC, -104.42, -13.63, 208.35, 2, math.random(10, 20))
  38. end