ataintedSapswillscout429145.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout429145.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout429145.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:13:58
  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. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 234.73, -0.83, -138.56, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 243.79, -0.87, -141.12, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 251.51, -0.97, -148.6, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 232.47, -0.83, -127.16, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 230.86, -0.92, -116.2, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 236.43, -0.84, -143.31, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 233.04, -1.02, -116.43, 2, 0)
  25. MovementLoopAddLocation(NPC, 230.79, -1.04, -109.99, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 232.64, -1.02, -117.21, 2, 0)
  27. MovementLoopAddLocation(NPC, 233.62, -0.83, -127.28, 2, math.random(14, 28))
  28. MovementLoopAddLocation(NPC, 235.75, -1.5, -118.81, 2, math.random(14, 28))
  29. MovementLoopAddLocation(NPC, 251.73, -1.06, -145.14, 2, math.random(14, 28))
  30. MovementLoopAddLocation(NPC, 247.15, -0.93, -143.51, 2, 0)
  31. MovementLoopAddLocation(NPC, 231.45, -0.82, -134.74, 2, math.random(14, 28))
  32. end