ataintedSapswillscout133769596.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769596.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769596.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:25:23
  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, 69.14, -0.63, -176.95, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 87.39, -1, -150.9, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 70.44, -2.57, -163.08, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 91.76, -0.3, -163.36, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 74.52, -0.23, -198.43, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 91.97, -1.02, -144.83, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 110.03, -0.37, -166.49, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 104.21, -0.34, -177.16, 2, 0)
  26. MovementLoopAddLocation(NPC, 100.74, 0.13, -182.86, 2, math.random(14, 28))
  27. MovementLoopAddLocation(NPC, 91.17, -0.48, -192.29, 2, 0)
  28. MovementLoopAddLocation(NPC, 84.11, -0.46, -201.72, 2, math.random(14, 28))
  29. end