aghostlytreant428290.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aghostlytreant428290.lua
  3. Script Purpose : Waypoint Path for aghostlytreant428290.lua
  4. Script Author : Rylec
  5. Script Date : 05-02-2020 05:48:32
  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, 125.53, 1.58, -94.97, 1.5, math.random(14, 30))
  18. MovementLoopAddLocation(NPC, 103.13, 1.64, -91.74, 1.5, math.random(14, 30))
  19. MovementLoopAddLocation(NPC, 113.58, 1.42, -96.46, 1.5, math.random(14, 30))
  20. MovementLoopAddLocation(NPC, 115.39, 1.57, -96.98, 1.5, math.random(14, 30))
  21. MovementLoopAddLocation(NPC, 134.49, 1.32, -87.06, 1.5, math.random(14, 30))
  22. MovementLoopAddLocation(NPC, 133.97, 1.33, -89.28, 1.5, math.random(14, 30))
  23. MovementLoopAddLocation(NPC, 117.14, 1.59, -96.72, 1.5, math.random(14, 30))
  24. MovementLoopAddLocation(NPC, 124.79, 1.56, -80.07, 1.5, math.random(14, 30))
  25. MovementLoopAddLocation(NPC, 127.89, 1.55, -81.83, 1.5, math.random(14, 30))
  26. MovementLoopAddLocation(NPC, 101.01, 1.85, -105.32, 1.5, math.random(14, 30))
  27. MovementLoopAddLocation(NPC, 93.01, 1.52, -106.14, 1.5, math.random(14, 30))
  28. MovementLoopAddLocation(NPC, 100.61, 1.45, -101.93, 1.5, 0)
  29. end