aghostlysapling428365.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aghostlysapling428365.lua
  3. Script Purpose : Waypoint Path for aghostlysapling428365.lua
  4. Script Author : Rylec
  5. Script Date : 05-02-2020 05:47:47
  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, 179, 1.15, -33.01, 2, math.random(14, 30))
  18. MovementLoopAddLocation(NPC, 172.25, 1.37, -13.99, 2, 0)
  19. MovementLoopAddLocation(NPC, 169.67, 1.38, -11.21, 2, math.random(14, 30))
  20. MovementLoopAddLocation(NPC, 182.87, 1.33, -1.25, 2, math.random(14, 30))
  21. MovementLoopAddLocation(NPC, 182.52, 1.33, -4.41, 2, math.random(14, 30))
  22. MovementLoopAddLocation(NPC, 151.92, 0.17, 13.72, 2, 0)
  23. MovementLoopAddLocation(NPC, 149.49, 0.6, 19.85, 2, math.random(14, 30))
  24. MovementLoopAddLocation(NPC, 151.93, 0.63, 17.43, 2, 0)
  25. MovementLoopAddLocation(NPC, 161.19, 1.41, 13.69, 2, math.random(14, 30))
  26. MovementLoopAddLocation(NPC, 164.39, 1.4, 1.74, 2, 0)
  27. MovementLoopAddLocation(NPC, 167.11, 1.39, -2.75, 2, 0)
  28. MovementLoopAddLocation(NPC, 169.31, 1.38, -7.42, 2, 0)
  29. MovementLoopAddLocation(NPC, 173.71, 1.37, -17.62, 2, 0)
  30. MovementLoopAddLocation(NPC, 173.18, 1.37, -30.3, 2, math.random(14, 30))
  31. end