ataintedSapswillscout133769582.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769582.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769582.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:22:38
  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, 107.04, -0.36, -168.38, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 82.17, -0.26, -187.8, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 87.34, -0.47, -181.75, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 72.41, -2.58, -160, 2, 0)
  22. MovementLoopAddLocation(NPC, 71.54, -2.55, -155.71, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 70.51, -2.57, -161.39, 2, 0)
  24. MovementLoopAddLocation(NPC, 90.64, -0.48, -187.75, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 98.44, -1.21, -155.53, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 88.77, -0.12, -163.04, 2, math.random(14, 28))
  27. MovementLoopAddLocation(NPC, 91.78, -0.3, -164.58, 2, math.random(14, 28))
  28. MovementLoopAddLocation(NPC, 109.06, -0.36, -167.81, 2, math.random(14, 28))
  29. MovementLoopAddLocation(NPC, 102.55, -0.76, -163.1, 2, math.random(14, 28))
  30. MovementLoopAddLocation(NPC, 70.32, -2.26, -155.43, 2, math.random(14, 28))
  31. end