ashoalglider425510.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425510.lua
  3. Script Purpose : Waypoint Path for ashoalglider425510.lua
  4. Script Author : Rylec
  5. Script Date : 11-14-2019 08:58:55
  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, -140.8, -12.37, 0.99, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -140.84, -12.5, 13.07, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -140.91, -12.49, 25.39, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -128.48, -11.44, 53.92, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -127.05, -11.46, 57.86, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -136.49, -11.98, 40.24, 2, 0)
  23. MovementLoopAddLocation(NPC, -131.54, -11.54, 27.53, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -128.51, -11.43, 59.87, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -128.54, -11.33, 57.48, 2, 0)
  26. MovementLoopAddLocation(NPC, -126.05, -10.5, 52.87, 2, 0)
  27. MovementLoopAddLocation(NPC, -108.41, -10.5, 46.4, 2, 0)
  28. MovementLoopAddLocation(NPC, -102.61, -10.5, 41.9, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -105.98, -10.5, 43.85, 2, 0)
  30. MovementLoopAddLocation(NPC, -115.86, -10.5, 43.18, 2, 0)
  31. MovementLoopAddLocation(NPC, -124.42, -10.5, 33.93, 2, 0)
  32. MovementLoopAddLocation(NPC, -134.14, -11.92, 9.02, 2, 0)
  33. end