nathan.lua 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. --[[
  2. Script Name : nathanironforge.lua
  3. Script Purpose : Waypoint Path for nathanironforge.lua
  4. Script Author : Devn00b
  5. Script Date : 04/09/2020 01:25:37 PM
  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, 780.46, -23.28, 81.74, 6, 0)
  19. MovementLoopAddLocation(NPC, 812.79, -23.34, 79.12, 6, 0)
  20. MovementLoopAddLocation(NPC, 832.09, -23.31, 46.9, 6, 0)
  21. MovementLoopAddLocation(NPC, 861.34, -25.37, 42.41, 6, 0)
  22. MovementLoopAddLocation(NPC, 892.74, -25.5, 54.12, 6, 0)
  23. MovementLoopAddLocation(NPC, 864.29, -25.5, 111.67, 6, 0)
  24. MovementLoopAddLocation(NPC, 906.32, -25.37, 7.59, 6, 0)
  25. MovementLoopAddLocation(NPC, 891.37, -25.36, -48.18, 6, 0)
  26. MovementLoopAddLocation(NPC, 862.76, -25.46, -72.81, 6, 0)
  27. MovementLoopAddLocation(NPC, 810.88, -20.4, -61.54, 6, 0)
  28. MovementLoopAddLocation(NPC, 762.83, -21.57, -60.8, 6, 0)
  29. MovementLoopAddLocation(NPC, 762.12, -20.8, -20.16, 6, 0)
  30. MovementLoopAddLocation(NPC, 750.64, -20.93, 4.63, 6, 0)
  31. MovementLoopAddLocation(NPC, 703.9, -21.08, -53.43, 6, 0)
  32. MovementLoopAddLocation(NPC, 731.13, -21.32, -59.2, 6, 0)
  33. MovementLoopAddLocation(NPC, 885.24, -25.36, -61.67, 6, 0)
  34. MovementLoopAddLocation(NPC, 904.09, -25.37, 12.44, 6, 0)
  35. MovementLoopAddLocation(NPC, 950.73, -25.5, 32.34, 6, 0)
  36. MovementLoopAddLocation(NPC, 952.78, -25.5, 20.96, 6, 0)
  37. MovementLoopAddLocation(NPC, 950.73, -25.5, 32.34, 6, 0)
  38. MovementLoopAddLocation(NPC, 904.09, -25.37, 12.44, 6, 0)
  39. MovementLoopAddLocation(NPC, 885.24, -25.36, -61.67, 6, 0)
  40. MovementLoopAddLocation(NPC, 731.13, -21.32, -59.2, 6, 0)
  41. MovementLoopAddLocation(NPC, 703.9, -21.08, -53.43, 6, 0)
  42. MovementLoopAddLocation(NPC, 750.64, -20.93, 4.63, 6, 0)
  43. MovementLoopAddLocation(NPC, 762.12, -20.8, -20.16, 6, 0)
  44. MovementLoopAddLocation(NPC, 762.83, -21.57, -60.8, 6, 0)
  45. MovementLoopAddLocation(NPC, 810.88, -20.4, -61.54, 6, 0)
  46. MovementLoopAddLocation(NPC, 862.76, -25.46, -72.81, 6, 0)
  47. MovementLoopAddLocation(NPC, 891.37, -25.36, -48.18, 6, 0)
  48. MovementLoopAddLocation(NPC, 906.32, -25.37, 7.59, 6, 0)
  49. MovementLoopAddLocation(NPC, 864.29, -25.5, 111.67, 6, 0)
  50. MovementLoopAddLocation(NPC, 892.74, -25.5, 54.12, 6, 0)
  51. MovementLoopAddLocation(NPC, 861.34, -25.37, 42.41, 6, 0)
  52. MovementLoopAddLocation(NPC, 832.09, -23.31, 46.9, 6, 0)
  53. MovementLoopAddLocation(NPC, 812.79, -23.34, 79.12, 6, 0)
  54. MovementLoopAddLocation(NPC, 780.46, -23.28, 81.74, 6, 0)
  55. end