ataintedSapswillscout133769573.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769573.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769573.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:21:12
  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, 148.25, -0.63, -214.64, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 152.94, -0.55, -213.81, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 132.14, -0.44, -209.58, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 168.66, -0.57, -218.64, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 159.74, -0.54, -220.06, 2, 0)
  23. MovementLoopAddLocation(NPC, 154.45, -0.61, -219.81, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 151.12, -0.79, -218.99, 2, 0)
  25. MovementLoopAddLocation(NPC, 139.8, -0.73, -219.02, 2, 0)
  26. MovementLoopAddLocation(NPC, 133.74, -0.77, -217.97, 2, 0)
  27. MovementLoopAddLocation(NPC, 125.82, -0.85, -217.66, 2, math.random(14, 28))
  28. MovementLoopAddLocation(NPC, 150.06, -0.62, -214.56, 2, math.random(14, 28))
  29. MovementLoopAddLocation(NPC, 173.62, -0.59, -212.74, 2, math.random(14, 28))
  30. MovementLoopAddLocation(NPC, 144.8, -0.49, -211.77, 2, math.random(14, 28))
  31. MovementLoopAddLocation(NPC, 124.01, -0.41, -212.86, 2, math.random(14, 28))
  32. MovementLoopAddLocation(NPC, 124.19, -0.41, -209.71, 2, math.random(14, 28))
  33. end