ashoalglider425541.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425541.lua
  3. Script Purpose : Waypoint Path for ashoalglider425541.lua
  4. Script Author : Rylec
  5. Script Date : 11-03-2019 05:45:36
  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, -114.17, -11.82, 218.86, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -104.85, -11.99, 218.1, 2, 0)
  19. MovementLoopAddLocation(NPC, -88.86, -12.22, 216.71, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -96.36, -13.21, 220.15, 2, 0)
  21. MovementLoopAddLocation(NPC, -119.36, -14.42, 239.81, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -119.59, -13.12, 233.56, 2, 0)
  23. MovementLoopAddLocation(NPC, -119.39, -13.22, 231.26, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -100.05, -13, 204.07, 2, 0)
  25. MovementLoopAddLocation(NPC, -98.27, -12.19, 201.88, 2, 0)
  26. MovementLoopAddLocation(NPC, -96.13, -12.21, 199.53, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -99.23, -13.16, 235.53, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -99.22, -12.2, 239.5, 2, 0)
  29. MovementLoopAddLocation(NPC, -99.22, -12.09, 242.46, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, -101.69, -14.39, 203.94, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -117.18, -11.79, 221.11, 2, math.random(10, 20))
  32. end