aghostlytreant428360.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aghostlytreant428360.lua
  3. Script Purpose : Waypoint Path for aghostlytreant428360.lua
  4. Script Author : Rylec
  5. Script Date : 05-02-2020 05:48:25
  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, 113.08, 1.6, -87.24, 1.5, math.random(14, 30))
  18. MovementLoopAddLocation(NPC, 95.97, 1.49, -104.54, 1.5, math.random(14, 30))
  19. MovementLoopAddLocation(NPC, 101.46, 1.45, -97.65, 1.5, math.random(14, 30))
  20. MovementLoopAddLocation(NPC, 127.87, 1.55, -80.85, 1.5, math.random(14, 30))
  21. MovementLoopAddLocation(NPC, 102.78, 1.44, -97.92, 1.5, math.random(14, 30))
  22. MovementLoopAddLocation(NPC, 118.18, 1.39, -94.06, 1.5, math.random(14, 30))
  23. MovementLoopAddLocation(NPC, 110.27, 1.62, -100.25, 1.5, math.random(14, 30))
  24. MovementLoopAddLocation(NPC, 128.31, 1.55, -77.65, 1.5, math.random(14, 30))
  25. MovementLoopAddLocation(NPC, 125.18, 1.36, -91.03, 1.5, 0)
  26. MovementLoopAddLocation(NPC, 121.83, 1.37, -92.91, 1.5, math.random(14, 30))
  27. MovementLoopAddLocation(NPC, 127.73, 1.35, -91.89, 1.5, math.random(14, 30))
  28. MovementLoopAddLocation(NPC, 123.89, 1.36, -91.58, 1.5, 0)
  29. end