ataintedSapswillscout133769622.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769622.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769622.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:31:11
  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, 197.95, -0.69, -168.75, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 192.42, -0.68, -143.11, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 189.21, -0.66, -157.43, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 180.71, -0.63, -164.33, 2, 0)
  22. MovementLoopAddLocation(NPC, 174.03, -0.6, -172.91, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 168.46, 0.15, -172.65, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 183.83, -0.64, -168.18, 2, 0)
  25. MovementLoopAddLocation(NPC, 188.24, -0.66, -167.46, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 216.38, -0.76, -148.13, 2, math.random(14, 28))
  27. MovementLoopAddLocation(NPC, 203.55, -0.71, -158.6, 2, math.random(14, 28))
  28. MovementLoopAddLocation(NPC, 185.4, -0.64, -171.45, 2, math.random(14, 28))
  29. end