aghostlysapling428366.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aghostlysapling428366.lua
  3. Script Purpose : Waypoint Path for aghostlysapling428366.lua
  4. Script Author : Rylec
  5. Script Date : 05-02-2020 05:47:49
  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, 184.86, 1.37, -10.99, 2, math.random(14, 30))
  18. MovementLoopAddLocation(NPC, 161.25, 1.41, -4.58, 2, math.random(14, 30))
  19. MovementLoopAddLocation(NPC, 165.83, 1.39, 0.54, 2, 0)
  20. MovementLoopAddLocation(NPC, 183.86, 1.32, 8.79, 2, math.random(14, 30))
  21. MovementLoopAddLocation(NPC, 168.38, 1.39, -15.47, 2, 0)
  22. MovementLoopAddLocation(NPC, 166.14, 1.14, -21.36, 2, math.random(14, 30))
  23. MovementLoopAddLocation(NPC, 171.94, 1.37, -22.55, 2, 0)
  24. MovementLoopAddLocation(NPC, 184.01, 1.33, -30.06, 2, math.random(14, 30))
  25. MovementLoopAddLocation(NPC, 176.67, 1.16, -36.44, 2, math.random(14, 30))
  26. MovementLoopAddLocation(NPC, 165.62, 1.39, -6.6, 2, 0)
  27. MovementLoopAddLocation(NPC, 161.96, 1.41, -0.3, 2, math.random(14, 30))
  28. MovementLoopAddLocation(NPC, 159.81, 0.6, -8.19, 2, 0)
  29. MovementLoopAddLocation(NPC, 147.95, 0.18, -23.36, 2, 0)
  30. MovementLoopAddLocation(NPC, 146.02, 0.59, -32.04, 2, math.random(14, 30))
  31. MovementLoopAddLocation(NPC, 147.74, 0.23, -24.86, 2, 0)
  32. MovementLoopAddLocation(NPC, 183.98, 1.32, 12.24, 2, math.random(14, 30))
  33. MovementLoopAddLocation(NPC, 187.81, 1.31, 18.64, 2, math.random(14, 30))
  34. MovementLoopAddLocation(NPC, 166.26, 1.14, -13.05, 2, math.random(14, 30))
  35. end