ataintedSapswillscout133769548.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769548.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769548.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:19:14
  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, 167.47, -0.57, -215.99, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 167.37, -0.56, -220.6, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 149.22, -0.64, -214.77, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 138.2, -0.86, -217.62, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 135.77, -0.66, -215.08, 2, 0)
  23. MovementLoopAddLocation(NPC, 133.91, -0.45, -210.73, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 153.06, -0.53, -213.65, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 167.27, -0.57, -215.67, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 151.3, -0.77, -216.04, 2, 0)
  27. MovementLoopAddLocation(NPC, 146.5, -0.63, -214.64, 2, math.random(14, 28))
  28. end