ashoalglider425606.lua 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425606.lua
  3. Script Purpose : Waypoint Path for ashoalglider425606.lua
  4. Script Author : Rylec
  5. Script Date : 10-22-2019 09:51:51
  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, 5.04, -11.5, 285.19, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 19.74, -11.5, 278.9, 2, 0)
  19. MovementLoopAddLocation(NPC, 30.58, -11.54, 272.28, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 4.93, -12.76, 280.21, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 12.01, -12.74, 272, 2, 0)
  22. MovementLoopAddLocation(NPC, 20.99, -11.82, 264.58, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 14.33, -11.66, 266.36, 2, 0)
  24. MovementLoopAddLocation(NPC, 11.52, -11.65, 274.04, 2, 0)
  25. MovementLoopAddLocation(NPC, 11.68, -11.93, 278.08, 2, 0)
  26. MovementLoopAddLocation(NPC, 7.8, -11.93, 284.11, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 16.09, -11.75, 272.04, 2, 0)
  28. MovementLoopAddLocation(NPC, 21.76, -12.06, 266.07, 2, 0)
  29. MovementLoopAddLocation(NPC, 23.99, -12.27, 259.23, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 17.57, -11.5, 263.1, 2, math.random(10, 20))
  31. end