ataintedSapswillscout429114.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout429114.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout429114.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:15:55
  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, 235.25, -0.83, -156.41, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 233.04, -0.82, -152.54, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 240.6, -0.85, -144.77, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 238.84, -0.85, -147.15, 2, 0)
  22. MovementLoopAddLocation(NPC, 220.51, -0.77, -167.23, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 227.45, -0.8, -168.15, 2, 0)
  24. MovementLoopAddLocation(NPC, 256.4, -1.04, -178.6, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 249.12, -0.42, -157.95, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 231.88, -0.81, -159.19, 2, math.random(14, 28))
  27. MovementLoopAddLocation(NPC, 241.5, -0.85, -184.08, 2, math.random(14, 28))
  28. MovementLoopAddLocation(NPC, 235.45, -0.63, -166.6, 2, math.random(14, 28))
  29. MovementLoopAddLocation(NPC, 237.83, -0.84, -160.78, 2, math.random(14, 28))
  30. MovementLoopAddLocation(NPC, 228.42, -0.8, -171.88, 2, 0)
  31. MovementLoopAddLocation(NPC, 216.91, -0.76, -181.19, 2, math.random(14, 28))
  32. MovementLoopAddLocation(NPC, 240.22, -0.28, -172.09, 2, math.random(14, 28))
  33. MovementLoopAddLocation(NPC, 239.52, -0.02, -166.97, 2, 0)
  34. end