ashoalglider425629.lua 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425629.lua
  3. Script Purpose : Waypoint Path for ashoalglider425629.lua
  4. Script Author : Rylec
  5. Script Date : 10-22-2019 09:52:18
  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.98, -12.57, 275.39, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 5.58, -12.37, 270.09, 2, 0)
  19. MovementLoopAddLocation(NPC, 5.58, -11.75, 267.8, 2, 0)
  20. MovementLoopAddLocation(NPC, 6.9, -11.3, 264.64, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 13.97, -11.32, 264.19, 2, 0)
  22. MovementLoopAddLocation(NPC, 30.1, -11.47, 265.79, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 11.91, -11.76, 267.15, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 13.54, -11.17, 268.17, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 10.1, -11.93, 279.81, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 19.29, -12.41, 271.96, 2, math.random(10, 20))
  27. end