ashoalglider425487.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425487.lua
  3. Script Purpose : Waypoint Path for ashoalglider425487.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:15:56
  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, 90.04, -11.48, -19.09, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 81.1, -11.52, -31.12, 2, 0)
  19. MovementLoopAddLocation(NPC, 75.43, -10.7, -36.54, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 92.33, -11.56, -39.79, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 77.33, -11.45, -19.49, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 79.49, -11.26, -25.52, 2, 0)
  23. MovementLoopAddLocation(NPC, 79.13, -11.05, -30.97, 2, 0)
  24. MovementLoopAddLocation(NPC, 76.52, -11.1, -38.09, 2, 0)
  25. MovementLoopAddLocation(NPC, 63.59, -10.58, -49.18, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 53.12, -10.7, -46.23, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 72.61, -10.7, -82.02, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 50.72, -11.53, -68.86, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 76.5, -10.95, -34.72, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 89.58, -11.5, -34.89, 2, math.random(10, 20))
  31. end