aghostlysapling428368.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aghostlysapling428368.lua
  3. Script Purpose : Waypoint Path for aghostlysapling428368.lua
  4. Script Author : Rylec
  5. Script Date : 05-02-2020 05:47:54
  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.17, 0.05, -28.07, 2, math.random(14, 30))
  18. MovementLoopAddLocation(NPC, 164.92, 1.39, 2.31, 2, math.random(14, 30))
  19. MovementLoopAddLocation(NPC, 167.81, 1.38, 13.87, 2, 0)
  20. MovementLoopAddLocation(NPC, 166.15, 1.39, 20.57, 2, math.random(14, 30))
  21. MovementLoopAddLocation(NPC, 179.08, 1.34, 5.52, 2, math.random(14, 30))
  22. MovementLoopAddLocation(NPC, 169.44, 1.17, 17.22, 2, math.random(14, 30))
  23. MovementLoopAddLocation(NPC, 155.76, 1.35, 11.38, 2, 0)
  24. MovementLoopAddLocation(NPC, 149.12, 0.18, 12.07, 2, math.random(14, 30))
  25. MovementLoopAddLocation(NPC, 148.34, 0.19, 8.21, 2, 0)
  26. MovementLoopAddLocation(NPC, 149.56, 0, -13.15, 2, 0)
  27. MovementLoopAddLocation(NPC, 148.26, 0.14, -19.84, 2, math.random(14, 30))
  28. MovementLoopAddLocation(NPC, 156.18, 0.04, -28.02, 2, math.random(14, 30))
  29. MovementLoopAddLocation(NPC, 150.21, 0.19, -31.92, 2, 0)
  30. MovementLoopAddLocation(NPC, 146.52, 0.48, -30.83, 2, math.random(14, 30))
  31. end