ataintedSapswillscout133769609.lua 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769609.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769609.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:29:39
  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, 151.56, -0.52, -192.03, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 137.12, -0.46, -195.15, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 154.29, -0.53, -188.05, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 129.19, -0.44, -174.01, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 137.17, 0.24, -181.2, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 133, -0.45, -183.34, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 131.46, -0.44, -184.14, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 150.95, -0.51, -196, 2, math.random(14, 28))
  26. end