ashoalglider425494.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425494.lua
  3. Script Purpose : Waypoint Path for ashoalglider425494.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:18:06
  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, 54.03, -11.47, -76.24, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 51.27, -10.63, -53.55, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 46.83, -10.7, -68.2, 2, 0)
  20. MovementLoopAddLocation(NPC, 39.24, -11.47, -85.2, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 62.67, -11.45, -66.73, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 51.56, -11.63, -77.02, 2, 0)
  23. MovementLoopAddLocation(NPC, 33.58, -11.49, -86.57, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 43.83, -11.64, -82.04, 2, 0)
  25. MovementLoopAddLocation(NPC, 52.77, -11.47, -74.98, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 72.5, -11.28, -79.27, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 62.58, -11.6, -74.92, 2, 0)
  28. end