ataintedSapswillscout133769528.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769528.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769528.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:16:05
  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, 255.17, -1.05, -164.41, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 232.94, -0.82, -173.62, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 236.45, -0.83, -182.66, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 231.11, -0.81, -181.39, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 239.08, -0.84, -182.7, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 229.26, -0.81, -164.36, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 253.6, -1.22, -182.77, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 226.76, -0.83, -161.54, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 230.52, -0.81, -157.58, 2, math.random(14, 28))
  27. MovementLoopAddLocation(NPC, 232.99, -0.82, -153.91, 2, math.random(14, 28))
  28. end