aghostlytreant428330.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aghostlytreant428330.lua
  3. Script Purpose : Waypoint Path for aghostlytreant428330.lua
  4. Script Author : Rylec
  5. Script Date : 05-02-2020 05:48:12
  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, 176.88, 1.36, -46.47, 1.5, math.random(14, 30))
  18. MovementLoopAddLocation(NPC, 151.42, 1.25, -55.02, 1.5, math.random(14, 30))
  19. MovementLoopAddLocation(NPC, 157.14, 1.3, -49.17, 1.5, math.random(14, 30))
  20. MovementLoopAddLocation(NPC, 148.29, 1.39, -56.18, 1.5, math.random(14, 30))
  21. MovementLoopAddLocation(NPC, 176.4, 1.16, -39.19, 1.5, math.random(14, 30))
  22. MovementLoopAddLocation(NPC, 158.71, 1.38, -56.59, 1.5, math.random(14, 30))
  23. MovementLoopAddLocation(NPC, 156.21, 1.11, -67.06, 1.5, 0)
  24. MovementLoopAddLocation(NPC, 153.92, 0.54, -73.75, 1.5, math.random(14, 30))
  25. MovementLoopAddLocation(NPC, 155.56, 0.64, -71.4, 1.5, 0)
  26. MovementLoopAddLocation(NPC, 157.61, 1.43, -60.13, 1.5, 0)
  27. MovementLoopAddLocation(NPC, 174.43, 1.17, -42.59, 1.5, math.random(14, 30))
  28. MovementLoopAddLocation(NPC, 170.53, 1.18, -44.08, 1.5, 0)
  29. MovementLoopAddLocation(NPC, 163.95, 1.21, -45.13, 1.5, math.random(14, 30))
  30. end