ataintedSapswillscout133769595.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769595.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769595.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:25:19
  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, 92.81, -0.36, -187.97, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 80.94, -0.13, -176.94, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 86.36, -0.47, -192.95, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 79.85, -0.44, -203.38, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 74.99, -0.11, -179.51, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 76.33, -0.33, -181.62, 2, 0)
  24. MovementLoopAddLocation(NPC, 79, -0.53, -183.45, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 76.23, -0.39, -182.15, 2, 0)
  26. MovementLoopAddLocation(NPC, 72.66, 0.15, -177.03, 2, math.random(14, 28))
  27. MovementLoopAddLocation(NPC, 75.38, 0.13, -176.99, 2, 0)
  28. MovementLoopAddLocation(NPC, 83.54, -0.27, -181.12, 2, 0)
  29. MovementLoopAddLocation(NPC, 87.84, -0.47, -184.98, 2, math.random(14, 28))
  30. end