aghostlytreant428291.lua 991 B

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aghostlytreant428291.lua
  3. Script Purpose : Waypoint Path for aghostlytreant428291.lua
  4. Script Author : Rylec
  5. Script Date : 05-02-2020 05:48:03
  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, 156.98, 1.32, -49.15, 1.5, math.random(14, 30))
  18. MovementLoopAddLocation(NPC, 141.16, 1.5, -62.5, 1.5, math.random(14, 30))
  19. MovementLoopAddLocation(NPC, 153.18, 1.25, -59.38, 1.5, 0)
  20. MovementLoopAddLocation(NPC, 160.9, 1.42, -55.82, 1.5, 0)
  21. MovementLoopAddLocation(NPC, 175.59, 1.3, -56.16, 1.5, math.random(14, 30))
  22. MovementLoopAddLocation(NPC, 159.63, 0.34, -76.51, 1.5, 0)
  23. MovementLoopAddLocation(NPC, 157.1, 0.35, -82.24, 1.5, math.random(14, 30))
  24. MovementLoopAddLocation(NPC, 157.6, 0.35, -77.4, 1.5, 0)
  25. end