ataintedSapswillscout429122.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout429122.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout429122.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:14:13
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. SpawnSet(NPC, "hp", 110)
  10. SpawnSet(NPC, "power", 55)
  11. waypoints(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. end
  16. function respawn(NPC)
  17. spawn(NPC)
  18. end
  19. function waypoints(NPC)
  20. MovementLoopAddLocation(NPC, 230.75, -0.82, -118.52, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 244.48, -0.85, -146.33, 2, 0)
  22. MovementLoopAddLocation(NPC, 246.67, -0.11, -153.57, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 238.53, -1.04, -125.04, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 224.76, -0.8, -108.69, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 229.78, -0.99, -111.18, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 239.81, -0.95, -114.96, 2, math.random(14, 28))
  27. MovementLoopAddLocation(NPC, 240.52, -0.88, -135.95, 2, math.random(14, 28))
  28. MovementLoopAddLocation(NPC, 238.69, -1.32, -119.92, 2, math.random(14, 28))
  29. MovementLoopAddLocation(NPC, 242.6, -0.87, -137.37, 2, math.random(14, 28))
  30. end