aghostlysapling428369.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aghostlysapling428369.lua
  3. Script Purpose : Waypoint Path for aghostlysapling428369.lua
  4. Script Author : Rylec
  5. Script Date : 05-02-2020 05:47:57
  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, 144.3, 0.74, -9.87, 2, math.random(14, 30))
  18. MovementLoopAddLocation(NPC, 152.87, 0.17, -5.18, 2, math.random(14, 30))
  19. MovementLoopAddLocation(NPC, 155.8, 0.16, -9.3, 2, 0)
  20. MovementLoopAddLocation(NPC, 167.46, 1.34, -18.16, 2, math.random(14, 30))
  21. MovementLoopAddLocation(NPC, 184.78, 1.35, -14.79, 2, math.random(14, 30))
  22. MovementLoopAddLocation(NPC, 168.13, 1.39, -9.36, 2, math.random(14, 30))
  23. MovementLoopAddLocation(NPC, 173.21, 1.16, 8.93, 2, math.random(14, 30))
  24. MovementLoopAddLocation(NPC, 174.99, 1.16, -6.71, 2, math.random(14, 30))
  25. MovementLoopAddLocation(NPC, 163.24, 1.4, -7.66, 2, 0)
  26. MovementLoopAddLocation(NPC, 157.79, 0.16, -9.39, 2, math.random(14, 30))
  27. MovementLoopAddLocation(NPC, 152.88, 1.03, -44.98, 2, 0)
  28. MovementLoopAddLocation(NPC, 155.3, 1.23, -53.81, 2, math.random(14, 30))
  29. MovementLoopAddLocation(NPC, 147.47, 0.27, -36.73, 2, 0)
  30. end