ashoalglider425466.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425466.lua
  3. Script Purpose : Waypoint Path for ashoalglider425466.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 10:17:15
  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, -42.52, -11.28, -41.11, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -43.75, -11.2, -28.03, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -33.2, -11.28, -24.05, 2, 0)
  20. MovementLoopAddLocation(NPC, -27.14, -11.54, -15.89, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -26.03, -11.48, -0.56, 2, 0)
  22. MovementLoopAddLocation(NPC, -25.94, -12.38, 10.51, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -24.76, -11.27, 1.69, 2, 0)
  24. MovementLoopAddLocation(NPC, -22.68, -11.11, -15.84, 2, 0)
  25. MovementLoopAddLocation(NPC, -18.01, -11.41, -25.22, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -20.08, -11.75, -28.31, 2, 0)
  27. MovementLoopAddLocation(NPC, -22.74, -11.82, -30.82, 2, 0)
  28. MovementLoopAddLocation(NPC, -30.3, -12.28, -34.54, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -32.6, -12.13, -37.12, 2, 0)
  30. MovementLoopAddLocation(NPC, -37.74, -11.43, -40.9, 2, math.random(10, 20))
  31. end