ashoalglider425476.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425476.lua
  3. Script Purpose : Waypoint Path for ashoalglider425476.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 10:20:26
  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, -45.27, -10.7, -28, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -35.77, -10.79, -35.91, 2, 0)
  19. MovementLoopAddLocation(NPC, -19.21, -10.56, -50.54, 2, 0)
  20. MovementLoopAddLocation(NPC, -13.82, -10.64, -58.81, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -14.54, -11.17, -43.19, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -7.41, -10.96, -50.87, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -15.09, -11.06, -46.95, 2, 0)
  24. MovementLoopAddLocation(NPC, -31.05, -11.09, -32.8, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -35.54, -10.7, -54.69, 2, 0)
  26. MovementLoopAddLocation(NPC, -38.36, -10.7, -69.49, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -38.29, -10.7, -57.6, 2, 0)
  28. MovementLoopAddLocation(NPC, -37.57, -10.7, -17.85, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -45.08, -10.54, -47.72, 2, math.random(10, 20))
  30. end