restless_corpse2.lua 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. --[[
  2. Script Name : restless_corpse2.lua
  3. Script Purpose : Waypoint Path for restless_corpse2.lua
  4. Script Author : Devn00b
  5. Script Date : 05/17/2020 02:57:59 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. waypoints(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 129.13, 7.38, -161.52, 2, 0)
  19. MovementLoopAddLocation(NPC, 128.69, 7, -125.84, 2, 0)
  20. MovementLoopAddLocation(NPC, 132.07, 7, -126.03, 2, 0)
  21. MovementLoopAddLocation(NPC, 132.65, 7, -123.32, 2, 0)
  22. MovementLoopAddLocation(NPC, 132.47, 7, -126.99, 2, 0)
  23. MovementLoopAddLocation(NPC, 128.1, 7, -126.86, 2, 0)
  24. MovementLoopAddLocation(NPC, 128.01, 6.92, -162.96, 2, 0)
  25. MovementLoopAddLocation(NPC, 133.28, 7.05, -170.28, 2, 0)
  26. MovementLoopAddLocation(NPC, 142.72, 6.96, -173.43, 2, 0)
  27. MovementLoopAddLocation(NPC, 148.89, 7.28, -171.99, 2, 0)
  28. MovementLoopAddLocation(NPC, 152.49, 6.79, -162.21, 2, 0)
  29. MovementLoopAddLocation(NPC, 152.84, 7.09, -139.26, 2, 0)
  30. MovementLoopAddLocation(NPC, 148.73, 7.02, -121.7, 2, 0)
  31. MovementLoopAddLocation(NPC, 139.24, 6.72, -114.66, 2, 0)
  32. MovementLoopAddLocation(NPC, 131.55, 7, -114.89, 2, 0)
  33. MovementLoopAddLocation(NPC, 130.79, 7, -100.98, 2, 0)
  34. MovementLoopAddLocation(NPC, 118.26, 7, -100.32, 2, 0)
  35. MovementLoopAddLocation(NPC, 113.36, 7, -92.83, 2, 0)
  36. MovementLoopAddLocation(NPC, 113.05, 7, -87.86, 2, 0)
  37. MovementLoopAddLocation(NPC, 122.57, 7, -87.38, 2, 0)
  38. MovementLoopAddLocation(NPC, 122.71, 6.9, -78.9, 2, 0)
  39. MovementLoopAddLocation(NPC, 117.28, 6.92, -71.21, 2, 0)
  40. MovementLoopAddLocation(NPC, 124.27, 6.82, -63.01, 2, 0)
  41. MovementLoopAddLocation(NPC, 106.83, 6.86, -45.04, 2, 0)
  42. MovementLoopAddLocation(NPC, 100.3, 6.89, -43.35, 2, 0)
  43. MovementLoopAddLocation(NPC, 95.13, 6.9, -48.53, 2, 0)
  44. MovementLoopAddLocation(NPC, 93.72, 6.9, -64.19, 2, 0)
  45. MovementLoopAddLocation(NPC, 95.13, 6.9, -48.53, 2, 0)
  46. MovementLoopAddLocation(NPC, 100.3, 6.89, -43.35, 2, 0)
  47. MovementLoopAddLocation(NPC, 106.83, 6.86, -45.04, 2, 0)
  48. MovementLoopAddLocation(NPC, 124.27, 6.82, -63.01, 2, 0)
  49. MovementLoopAddLocation(NPC, 117.28, 6.92, -71.21, 2, 0)
  50. MovementLoopAddLocation(NPC, 122.71, 6.9, -78.9, 2, 0)
  51. MovementLoopAddLocation(NPC, 122.57, 7, -87.38, 2, 0)
  52. MovementLoopAddLocation(NPC, 113.05, 7, -87.86, 2, 0)
  53. MovementLoopAddLocation(NPC, 113.36, 7, -92.83, 2, 0)
  54. MovementLoopAddLocation(NPC, 118.26, 7, -100.32, 2, 0)
  55. MovementLoopAddLocation(NPC, 130.79, 7, -100.98, 2, 0)
  56. MovementLoopAddLocation(NPC, 131.55, 7, -114.89, 2, 0)
  57. MovementLoopAddLocation(NPC, 139.24, 6.72, -114.66, 2, 0)
  58. MovementLoopAddLocation(NPC, 148.73, 7.02, -121.7, 2, 0)
  59. MovementLoopAddLocation(NPC, 152.84, 7.09, -139.26, 2, 0)
  60. MovementLoopAddLocation(NPC, 152.49, 6.79, -162.21, 2, 0)
  61. MovementLoopAddLocation(NPC, 148.89, 7.28, -171.99, 2, 0)
  62. MovementLoopAddLocation(NPC, 142.72, 6.96, -173.43, 2, 0)
  63. MovementLoopAddLocation(NPC, 133.28, 7.05, -170.28, 2, 0)
  64. MovementLoopAddLocation(NPC, 128.01, 6.92, -162.96, 2, 0)
  65. MovementLoopAddLocation(NPC, 128.1, 7, -126.86, 2, 0)
  66. MovementLoopAddLocation(NPC, 132.47, 7, -126.99, 2, 0)
  67. MovementLoopAddLocation(NPC, 132.65, 7, -123.32, 2, 0)
  68. MovementLoopAddLocation(NPC, 132.07, 7, -126.03, 2, 0)
  69. MovementLoopAddLocation(NPC, 128.69, 7, -125.84, 2, 0)
  70. MovementLoopAddLocation(NPC, 129.13, 7.38, -161.52, 2, 0)
  71. end