ataintedSapswillscout133769546.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769546.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769546.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:19:08
  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, 170.11, -0.58, -217.18, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 167.88, -0.57, -215.38, 2, 0)
  20. MovementLoopAddLocation(NPC, 158.73, -0.73, -208.49, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 151.7, -0.7, -208.13, 2, 0)
  22. MovementLoopAddLocation(NPC, 139.01, -0.47, -210.23, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 172.14, -0.59, -213.5, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 169.01, -0.57, -218.08, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 171.81, -0.59, -211.35, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 174.94, -0.6, -210.41, 2, math.random(14, 28))
  27. MovementLoopAddLocation(NPC, 157.5, -0.53, -213.29, 2, math.random(14, 28))
  28. end