ataintedSapswillscout133769553.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769553.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769553.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:19:22
  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.39, -0.58, -214.95, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 149.47, -0.63, -214.72, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 130.69, -0.5, -213.88, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 138.09, -0.82, -217.98, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 134.19, -0.65, -215.03, 2, 0)
  23. MovementLoopAddLocation(NPC, 125.87, -0.42, -210.65, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 145.02, -0.54, -213.94, 2, 0)
  25. MovementLoopAddLocation(NPC, 154.37, -0.75, -215.81, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 160, -0.54, -215.5, 2, 0)
  27. MovementLoopAddLocation(NPC, 170.4, -0.58, -212.78, 2, math.random(14, 28))
  28. MovementLoopAddLocation(NPC, 166.11, -0.56, -215.7, 2, math.random(14, 28))
  29. MovementLoopAddLocation(NPC, 170.6, -0.58, -211.68, 2, math.random(14, 28))
  30. MovementLoopAddLocation(NPC, 139.24, -0.83, -216.63, 2, math.random(14, 28))
  31. end