ataintedSapswillscout133769633.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769633.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769633.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:32:11
  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, 216.25, -0.76, -146.92, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 195.5, -0.69, -146.81, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 207.86, -0.73, -150.81, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 190.72, -0.67, -150.53, 2, 0)
  22. MovementLoopAddLocation(NPC, 184.14, 0, -154.19, 2, 0)
  23. MovementLoopAddLocation(NPC, 172.6, -0.6, -175.25, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 186.68, -0.65, -165.05, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 217.87, -0.77, -148.21, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 199.41, -0.7, -145.68, 2, math.random(14, 28))
  27. MovementLoopAddLocation(NPC, 181.12, -0.09, -161.01, 2, math.random(14, 28))
  28. end