arat.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : arat.lua
  3. Script Purpose : Waypoint Path for arat.lua
  4. Script Author : Devn00b
  5. Script Date : 04/09/2020 01:33:42 AM
  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. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 952.27, -25.5, 26, 5, 0)
  19. MovementLoopAddLocation(NPC, 950.07, -25.5, 30.93, 5, 0)
  20. MovementLoopAddLocation(NPC, 934.24, -25.56, 28.39, 5, 0)
  21. MovementLoopAddLocation(NPC, 923.16, -25.49, 51.47, 5, 0)
  22. MovementLoopAddLocation(NPC, 905.32, -25.32, 46.06, 5, 0)
  23. MovementLoopAddLocation(NPC, 885.13, -25.48, 49.76, 5, 0)
  24. MovementLoopAddLocation(NPC, 876.7, -25.37, 56.62, 5, 0)
  25. MovementLoopAddLocation(NPC, 857.98, -25.37, 40.88, 5, 0)
  26. MovementLoopAddLocation(NPC, 836.85, -23.28, 43.62, 5, 0)
  27. MovementLoopAddLocation(NPC, 811.68, -23.35, 94.3, 5, 0)
  28. MovementLoopAddLocation(NPC, 836.85, -23.28, 43.62, 5, 0)
  29. MovementLoopAddLocation(NPC, 857.98, -25.37, 40.88, 5, 0)
  30. MovementLoopAddLocation(NPC, 876.7, -25.37, 56.62, 5, 0)
  31. MovementLoopAddLocation(NPC, 885.13, -25.48, 49.76, 5, 0)
  32. MovementLoopAddLocation(NPC, 905.32, -25.32, 46.06, 5, 0)
  33. MovementLoopAddLocation(NPC, 923.16, -25.49, 51.47, 5, 0)
  34. MovementLoopAddLocation(NPC, 934.24, -25.56, 28.39, 5, 0)
  35. MovementLoopAddLocation(NPC, 950.07, -25.5, 30.93, 5, 0)
  36. MovementLoopAddLocation(NPC, 952.27, -25.5, 26, 5, 0)
  37. end