ataintedSapswillscout133769572.lua 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769572.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769572.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:21:10
  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, 128.58, -0.82, -216.31, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 130.12, -0.58, -214.53, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 131.52, -0.78, -216.19, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 146.14, -0.49, -212.35, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 165.89, -0.56, -215.4, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 137.26, -0.46, -210.24, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 163.4, -0.75, -207.44, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 137.31, -0.46, -212.4, 2, math.random(14, 28))
  26. end