ataintedSapswillscout133769538.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769538.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769538.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:18:02
  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, 237.82, -0.83, -185.17, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 235.33, -0.83, -155.31, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 222.82, -0.78, -169.88, 2, 0)
  21. MovementLoopAddLocation(NPC, 220.19, -0.77, -175.96, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 244.02, 0.22, -165.91, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 227.89, -0.8, -164.18, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 241.69, -0.22, -155.22, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 215.51, -0.75, -176.16, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 248.1, -0.42, -173.52, 2, math.random(14, 28))
  27. MovementLoopAddLocation(NPC, 256.4, -0.99, -174.67, 2, math.random(14, 28))
  28. MovementLoopAddLocation(NPC, 250.82, -0.92, -176.45, 2, 0)
  29. end