atriggerfish425773.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish425773.lua
  3. Script Purpose : Waypoint Path for atriggerfish425773.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 10:19:36
  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, -22.9, -12.06, -24.96, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -24.09, -11.98, -32.33, 2, 0)
  19. MovementLoopAddLocation(NPC, -28.4, -11.05, -52.41, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -27.81, -11.59, -44.15, 2, 0)
  21. MovementLoopAddLocation(NPC, -17.3, -11.94, -22.97, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -32.56, -12.44, -31.46, 2, 0)
  23. MovementLoopAddLocation(NPC, -39.81, -12.13, -33.44, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -6.52, -11.97, -30.34, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -7.02, -12.01, -16.92, 2, 0)
  26. MovementLoopAddLocation(NPC, -11.74, -12.03, -7.49, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -29.24, -10.51, -7.03, 2, 0)
  28. MovementLoopAddLocation(NPC, -50.13, -10.48, -4.37, 2, 0)
  29. MovementLoopAddLocation(NPC, -54.32, -10.56, 0.58, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, -46.94, -10.2, -9.95, 2, 0)
  31. MovementLoopAddLocation(NPC, -38.33, -10.38, -18.32, 2, 0)
  32. MovementLoopAddLocation(NPC, -29.03, -11.07, -24.16, 2, 0)
  33. MovementLoopAddLocation(NPC, -26.02, -11.54, -25.33, 2, 0)
  34. end