ataintedSapswillscout133769607.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769607.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769607.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:29: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, 137.19, 0.24, -179.02, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 134.39, -0.45, -188.96, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 136.39, -0.46, -188.32, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 140.3, -0.47, -191.99, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 155.14, -0.53, -190.26, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 132.27, -0.45, -179.23, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 131.3, -0.44, -179.2, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 161.12, -0.55, -194.23, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 140.28, -0.19, -188.23, 2, math.random(14, 28))
  27. MovementLoopAddLocation(NPC, 137.48, -0.46, -192.13, 2, math.random(14, 28))
  28. MovementLoopAddLocation(NPC, 147.62, -0.5, -194.42, 2, math.random(14, 28))
  29. end