ashoalglider425489.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425489.lua
  3. Script Purpose : Waypoint Path for ashoalglider425489.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:16:39
  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, 49.32, -11.55, -82.24, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 64.81, -11.59, -69.46, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 54.85, -11.54, -71.24, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 64.56, -10.7, -50.51, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 70.12, -11.4, -69.61, 2, 0)
  22. MovementLoopAddLocation(NPC, 74.24, -11.54, -79.38, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 57.24, -11.55, -64.41, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 73.55, -11.58, -55.49, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 56.76, -11.6, -67.56, 2, 0)
  26. MovementLoopAddLocation(NPC, 48.71, -11.57, -75.49, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 66.42, -11.58, -80.34, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 55.47, -11.13, -81.15, 2, 0)
  29. end