ataintedSapswillscout133769583.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769583.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769583.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:22:46
  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, 96.08, -0.67, -161.9, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 86.44, -0.47, -198.35, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 92.81, -0.3, -164.96, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 78.75, -0.44, -201.9, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 91.83, -0.49, -181.67, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 96.27, -0.7, -157.32, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 94.05, -0.5, -176.38, 2, 0)
  25. MovementLoopAddLocation(NPC, 93.19, -0.36, -181.64, 2, 0)
  26. MovementLoopAddLocation(NPC, 93.94, -0.3, -184.76, 2, math.random(14, 28))
  27. MovementLoopAddLocation(NPC, 92.87, -0.38, -181.8, 2, 0)
  28. MovementLoopAddLocation(NPC, 93.86, -0.5, -172.71, 2, math.random(14, 28))
  29. MovementLoopAddLocation(NPC, 71.35, -0.61, -186.25, 2, math.random(14, 28))
  30. MovementLoopAddLocation(NPC, 79.1, 0.57, -169.24, 2, 0)
  31. MovementLoopAddLocation(NPC, 79.95, 0.3, -164.69, 2, math.random(14, 28))
  32. end