restless_corpse4.lua 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. --[[
  2. Script Name : restless_corpse4.lua
  3. Script Purpose : Waypoint Path for restless_corpse4.lua
  4. Script Author : Devn00b
  5. Script Date : 05/18/2020 10:09:56 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. waypoints(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 122.81, 6.86, -81.19, 2, 0)
  19. MovementLoopAddLocation(NPC, 123.01, 7, -87.15, 2, 0)
  20. MovementLoopAddLocation(NPC, 112.98, 7, -87.35, 2, 0)
  21. MovementLoopAddLocation(NPC, 114.01, 7, -103.12, 2, 0)
  22. MovementLoopAddLocation(NPC, 113.05, 7, -87.42, 2, 0)
  23. MovementLoopAddLocation(NPC, 123.85, 7, -88.01, 2, 0)
  24. MovementLoopAddLocation(NPC, 118.82, 6.86, -67.66, 2, 0)
  25. MovementLoopAddLocation(NPC, 124.28, 6.84, -62.37, 2, 0)
  26. MovementLoopAddLocation(NPC, 103.01, 6.89, -43.49, 2, 0)
  27. MovementLoopAddLocation(NPC, 95.66, 6.91, -47.53, 2, 0)
  28. MovementLoopAddLocation(NPC, 93.48, 6.89, -62.27, 2, 0)
  29. MovementLoopAddLocation(NPC, 79.05, 6.85, -63.13, 2, 0)
  30. MovementLoopAddLocation(NPC, 67.32, 6.93, -56.46, 2, 0)
  31. MovementLoopAddLocation(NPC, 80.4, 6.88, -64.57, 2, 0)
  32. MovementLoopAddLocation(NPC, 93.63, 6.92, -63.77, 2, 0)
  33. MovementLoopAddLocation(NPC, 97.96, 6.89, -45.81, 2, 0)
  34. MovementLoopAddLocation(NPC, 105.35, 7.17, -45.93, 2, 0)
  35. MovementLoopAddLocation(NPC, 137.61, 6.89, -73.82, 2, 0)
  36. MovementLoopAddLocation(NPC, 151.29, 6.87, -70.66, 2, 0)
  37. MovementLoopAddLocation(NPC, 156.67, 7.28, -61.55, 2, 0)
  38. MovementLoopAddLocation(NPC, 149.08, 6.93, -52.3, 2, 0)
  39. MovementLoopAddLocation(NPC, 148.94, 6.99, -44.41, 2, 0)
  40. MovementLoopAddLocation(NPC, 149.97, 6.99, -36.4, 2, 0)
  41. MovementLoopAddLocation(NPC, 146.55, 6.99, -26.92, 2, 0)
  42. MovementLoopAddLocation(NPC, 145.67, 6.99, -21.75, 2, 0)
  43. MovementLoopAddLocation(NPC, 146.55, 6.99, -26.92, 2, 0)
  44. MovementLoopAddLocation(NPC, 149.97, 6.99, -36.4, 2, 0)
  45. MovementLoopAddLocation(NPC, 148.94, 6.99, -44.41, 2, 0)
  46. MovementLoopAddLocation(NPC, 149.08, 6.93, -52.3, 2, 0)
  47. MovementLoopAddLocation(NPC, 156.67, 7.28, -61.55, 2, 0)
  48. MovementLoopAddLocation(NPC, 151.29, 6.87, -70.66, 2, 0)
  49. MovementLoopAddLocation(NPC, 137.61, 6.89, -73.82, 2, 0)
  50. MovementLoopAddLocation(NPC, 105.35, 7.17, -45.93, 2, 0)
  51. MovementLoopAddLocation(NPC, 97.96, 6.89, -45.81, 2, 0)
  52. MovementLoopAddLocation(NPC, 93.63, 6.92, -63.77, 2, 0)
  53. MovementLoopAddLocation(NPC, 80.4, 6.88, -64.57, 2, 0)
  54. MovementLoopAddLocation(NPC, 67.32, 6.93, -56.46, 2, 0)
  55. MovementLoopAddLocation(NPC, 79.05, 6.85, -63.13, 2, 0)
  56. MovementLoopAddLocation(NPC, 93.48, 6.89, -62.27, 2, 0)
  57. MovementLoopAddLocation(NPC, 95.66, 6.91, -47.53, 2, 0)
  58. MovementLoopAddLocation(NPC, 103.01, 6.89, -43.49, 2, 0)
  59. MovementLoopAddLocation(NPC, 124.28, 6.84, -62.37, 2, 0)
  60. MovementLoopAddLocation(NPC, 118.82, 6.86, -67.66, 2, 0)
  61. MovementLoopAddLocation(NPC, 123.85, 7, -88.01, 2, 0)
  62. MovementLoopAddLocation(NPC, 113.05, 7, -87.42, 2, 0)
  63. MovementLoopAddLocation(NPC, 114.01, 7, -103.12, 2, 0)
  64. MovementLoopAddLocation(NPC, 112.98, 7, -87.35, 2, 0)
  65. MovementLoopAddLocation(NPC, 123.01, 7, -87.15, 2, 0)
  66. MovementLoopAddLocation(NPC, 122.81, 6.86, -81.19, 2, 0)
  67. end