aghostlysapling428418.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aghostlysapling428418.lua
  3. Script Purpose : Waypoint Path for aghostlysapling428418.lua
  4. Script Author : Rylec
  5. Script Date : 05-02-2020 05:47:36
  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, 169.66, 1.17, 17.13, 2, math.random(14, 30))
  18. MovementLoopAddLocation(NPC, 187.4, 1.41, -8.25, 2, 0)
  19. MovementLoopAddLocation(NPC, 188.21, 1.49, -12.34, 2, 0)
  20. MovementLoopAddLocation(NPC, 185.91, 1.32, -27, 2, 0)
  21. MovementLoopAddLocation(NPC, 186.48, 1.32, -32.98, 2, math.random(14, 30))
  22. MovementLoopAddLocation(NPC, 186.58, 1.32, -26.79, 2, math.random(14, 30))
  23. MovementLoopAddLocation(NPC, 187.19, 1.32, -18.84, 2, 0)
  24. MovementLoopAddLocation(NPC, 188.18, 1.51, -11.23, 2, math.random(14, 30))
  25. MovementLoopAddLocation(NPC, 187.72, 1.44, -13.76, 2, 0)
  26. MovementLoopAddLocation(NPC, 183.13, 1.33, -17.96, 2, math.random(14, 30))
  27. MovementLoopAddLocation(NPC, 166.11, 1.39, -9.51, 2, math.random(14, 30))
  28. MovementLoopAddLocation(NPC, 165.86, 1.39, -7.58, 2, 0)
  29. MovementLoopAddLocation(NPC, 151.3, 0.18, 1.51, 2, 0)
  30. MovementLoopAddLocation(NPC, 149.35, 0.18, 5.37, 2, math.random(14, 30))
  31. MovementLoopAddLocation(NPC, 159.01, 1.35, -4.97, 2, 0)
  32. MovementLoopAddLocation(NPC, 167.24, 1.3, -18.11, 2, math.random(14, 30))
  33. MovementLoopAddLocation(NPC, 180.07, 1.3, -16.22, 2, math.random(14, 30))
  34. MovementLoopAddLocation(NPC, 170.82, 1.38, -11.21, 2, math.random(14, 30))
  35. end