ataintedSapswillscout133769597.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769597.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769597.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:25:25
  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, 87.42, -0.28, -175.5, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 95.09, -0.43, -157.13, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 84.13, -0.27, -178.61, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 76.67, -0.02, -166.29, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 82.29, -0.26, -194.03, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 86.45, -0.47, -190.9, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 87.42, -0.24, -157.3, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 80.22, 0.38, -172.71, 2, 0)
  26. MovementLoopAddLocation(NPC, 76, -0.06, -178.97, 2, 0)
  27. MovementLoopAddLocation(NPC, 75.62, -0.5, -183.22, 2, math.random(14, 28))
  28. MovementLoopAddLocation(NPC, 80.75, -0.26, -180.32, 2, 0)
  29. MovementLoopAddLocation(NPC, 90.68, -0.36, -172.28, 2, math.random(14, 28))
  30. MovementLoopAddLocation(NPC, 76.58, 0.11, -167.69, 2, math.random(14, 28))
  31. MovementLoopAddLocation(NPC, 101.45, -1.79, -154.11, 2, math.random(14, 28))
  32. end