ataintedSapswillscout133769536.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769536.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769536.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:17: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, 236.57, -0.83, -184.83, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 234.13, -0.82, -174.67, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 247.91, -0.67, -147.37, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 251.52, -1.06, -144.88, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 240.56, -0.45, -152.63, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 221.65, -0.78, -183.98, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 227.97, -0.8, -177.47, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 236.86, -0.83, -181.27, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 253.84, -1.19, -172.59, 2, math.random(14, 28))
  27. end