ataintedSapswillscout133769552.lua 1.0 KB

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769552.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769552.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:19:16
  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, 168.92, -0.58, -209.18, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 167.55, -0.73, -206.47, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 138.86, -0.79, -216.22, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 171.55, -0.59, -209.46, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 161.72, -0.74, -206.43, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 130.06, -0.43, -211.14, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 133, -0.44, -211.31, 2, math.random(14, 28))
  25. end