ashoalglider425460.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425460.lua
  3. Script Purpose : Waypoint Path for ashoalglider425460.lua
  4. Script Author : Rylec
  5. Script Date : 11-14-2019 08:59:58
  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, -99.06, -10.5, 17.26, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -107.44, -10.5, 16.5, 2, 0)
  19. MovementLoopAddLocation(NPC, -116.44, -10.5, 17.3, 2, 0)
  20. MovementLoopAddLocation(NPC, -121.98, -10.5, 20.43, 2, 0)
  21. MovementLoopAddLocation(NPC, -127.98, -10.5, 35.87, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -142.33, -12.48, 43.78, 2, 0)
  23. MovementLoopAddLocation(NPC, -149.18, -12.75, 46.3, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -135.63, -12.76, 56.67, 2, 0)
  25. MovementLoopAddLocation(NPC, -131.55, -12.48, 72.27, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -134.63, -12.49, 56.04, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -134.74, -11.48, 25.37, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -128.94, -10.5, 21.76, 2, 0)
  29. MovementLoopAddLocation(NPC, -118.72, -10.5, 17.23, 2, 0)
  30. MovementLoopAddLocation(NPC, -115.29, -10.5, 17.36, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -101.3, -10.5, 15.74, 2, 0)
  32. end