aghostlytreant428354.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aghostlytreant428354.lua
  3. Script Purpose : Waypoint Path for aghostlytreant428354.lua
  4. Script Author : Rylec
  5. Script Date : 05-02-2020 05:48:22
  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, 126.13, 1.53, -86.89, 1.5, math.random(14, 30))
  18. MovementLoopAddLocation(NPC, 102.81, 1.44, -96.71, 1.5, math.random(14, 30))
  19. MovementLoopAddLocation(NPC, 115.78, 1.59, -85.96, 1.5, math.random(14, 30))
  20. MovementLoopAddLocation(NPC, 98.23, 1.6, -104.44, 1.5, math.random(14, 30))
  21. MovementLoopAddLocation(NPC, 78.65, 1.53, -110.11, 1.5, math.random(14, 30))
  22. MovementLoopAddLocation(NPC, 93.8, 2.06, -96.67, 1.5, 0)
  23. MovementLoopAddLocation(NPC, 110.12, 1.48, -92.11, 1.5, 0)
  24. MovementLoopAddLocation(NPC, 123.47, 1.57, -81.67, 1.5, math.random(14, 30))
  25. MovementLoopAddLocation(NPC, 121.71, 1.57, -85.66, 1.5, math.random(14, 30))
  26. MovementLoopAddLocation(NPC, 109.02, 1.43, -92.93, 1.5, math.random(14, 30))
  27. MovementLoopAddLocation(NPC, 82.11, 1.52, -107.1, 1.5, math.random(14, 30))
  28. end