aghostlytreant428292.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aghostlytreant428292.lua
  3. Script Purpose : Waypoint Path for aghostlytreant428292.lua
  4. Script Author : Rylec
  5. Script Date : 05-02-2020 05:48:35
  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, 115.16, 1.43, -95.98, 1.5, math.random(14, 30))
  18. MovementLoopAddLocation(NPC, 108.73, 1.49, -98.99, 1.5, math.random(14, 30))
  19. MovementLoopAddLocation(NPC, 100.56, 1.45, -102.03, 1.5, math.random(14, 30))
  20. MovementLoopAddLocation(NPC, 92.79, 1.57, -101.01, 1.5, math.random(14, 30))
  21. MovementLoopAddLocation(NPC, 126.16, 1.36, -91.91, 1.5, math.random(14, 30))
  22. MovementLoopAddLocation(NPC, 105.91, 1.63, -91.41, 1.5, math.random(14, 30))
  23. MovementLoopAddLocation(NPC, 131.36, 1.34, -89.78, 1.5, math.random(14, 30))
  24. MovementLoopAddLocation(NPC, 110.71, 1.62, -101.01, 1.5, math.random(14, 30))
  25. MovementLoopAddLocation(NPC, 99.5, 1.46, -98.9, 1.5, math.random(14, 30))
  26. MovementLoopAddLocation(NPC, 116.96, 1.59, -87.75, 1.5, math.random(14, 30))
  27. MovementLoopAddLocation(NPC, 97.92, 1.46, -99.05, 1.5, math.random(14, 30))
  28. end