ashoalglider425555.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425555.lua
  3. Script Purpose : Waypoint Path for ashoalglider425555.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 08:53:49
  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, -20.5, -11.46, -8.63, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -22.97, -12.06, -27.88, 2, 0)
  19. MovementLoopAddLocation(NPC, -22.89, -12.27, -34.8, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -16.99, -11.82, -37.3, 2, 0)
  21. MovementLoopAddLocation(NPC, -8.17, -11.48, -42.41, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -22.57, -11.88, -46, 2, 0)
  23. MovementLoopAddLocation(NPC, -31.72, -11, -48.62, 2, 0)
  24. MovementLoopAddLocation(NPC, -45.5, -10.7, -54.4, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -32.08, -11.21, -40.91, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -34.33, -10.7, -44.3, 2, 0)
  27. MovementLoopAddLocation(NPC, -41.86, -10.7, -49.02, 2, 0)
  28. MovementLoopAddLocation(NPC, -48.36, -10.7, -54.76, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -43.74, -10.7, -47.91, 2, 0)
  30. MovementLoopAddLocation(NPC, -25.84, -10.7, -17.11, 2, 0)
  31. MovementLoopAddLocation(NPC, -10.26, -11.55, -10.16, 2, math.random(10, 20))
  32. end