aghostlytreant428289.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aghostlytreant428289.lua
  3. Script Purpose : Waypoint Path for aghostlytreant428289.lua
  4. Script Author : Rylec
  5. Script Date : 05-02-2020 05:48:30
  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, 109.05, 1.42, -97.9, 1.5, math.random(14, 30))
  18. MovementLoopAddLocation(NPC, 121.82, 1.48, -87.73, 1.5, math.random(14, 30))
  19. MovementLoopAddLocation(NPC, 117.9, 1.59, -85.29, 1.5, math.random(14, 30))
  20. MovementLoopAddLocation(NPC, 86.44, 1.51, -107.39, 1.5, math.random(14, 30))
  21. MovementLoopAddLocation(NPC, 104.37, 1.44, -98.38, 1.5, math.random(14, 30))
  22. MovementLoopAddLocation(NPC, 86.86, 1.81, -102.12, 1.5, math.random(14, 30))
  23. MovementLoopAddLocation(NPC, 109.09, 1.42, -97.82, 1.5, math.random(14, 30))
  24. MovementLoopAddLocation(NPC, 119.61, 1.58, -100.41, 1.5, 0)
  25. MovementLoopAddLocation(NPC, 127.5, 1.6, -96.96, 1.5, math.random(14, 30))
  26. MovementLoopAddLocation(NPC, 123.88, 1.56, -93.99, 1.5, 0)
  27. MovementLoopAddLocation(NPC, 118.81, 1.41, -94.06, 1.5, 0)
  28. end