ashoalglider425630.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425630.lua
  3. Script Purpose : Waypoint Path for ashoalglider425630.lua
  4. Script Author : Rylec
  5. Script Date : 10-22-2019 09:53:20
  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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, 9.74, -14.29, 275.1, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 12.07, -13.6, 273.79, 2, 0)
  19. MovementLoopAddLocation(NPC, 20.43, -10.71, 254.39, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 13.98, -11.81, 256.82, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 10.27, -11.22, 267.12, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 6.65, -13.78, 272.34, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 10.71, -12.88, 268.92, 2, 0)
  24. MovementLoopAddLocation(NPC, 12.33, -12.15, 260.97, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 14, -13.26, 262.24, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 16.21, -11.31, 274.78, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 24.77, -12.34, 259.57, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 17.97, -14.22, 273.69, 2, math.random(10, 20))
  29. end