diseased_corpse6.lua 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. --[[
  2. Script Name : diseased_corpse6.lua
  3. Script Purpose : Waypoint Path for diseased_corpse6.lua
  4. Script Author : Devn00b
  5. Script Date : 05/17/2020 02:51:58 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, 127.04, 6.79, -132.55, 2, 0)
  19. MovementLoopAddLocation(NPC, 127.89, 6.95, -163.11, 2, 0)
  20. MovementLoopAddLocation(NPC, 134.71, 7.03, -171.74, 2, 0)
  21. MovementLoopAddLocation(NPC, 150.04, 7.3, -171.78, 2, 0)
  22. MovementLoopAddLocation(NPC, 149.87, 6.99, -138.89, 2, 0)
  23. MovementLoopAddLocation(NPC, 167.28, 6.84, -140.23, 2, 0)
  24. MovementLoopAddLocation(NPC, 173.35, 6.94, -146.37, 2, 0)
  25. MovementLoopAddLocation(NPC, 165.58, 6.9, -155.2, 2, 0)
  26. MovementLoopAddLocation(NPC, 166.58, 6.88, -150.52, 2, 0)
  27. MovementLoopAddLocation(NPC, 168.83, 6.86, -152.12, 2, 0)
  28. MovementLoopAddLocation(NPC, 172.82, 6.87, -147.59, 2, 0)
  29. MovementLoopAddLocation(NPC, 161.45, 7.4, -139.44, 2, 0)
  30. MovementLoopAddLocation(NPC, 151.93, 6.95, -139.11, 2, 0)
  31. MovementLoopAddLocation(NPC, 150.29, 6.96, -122.42, 2, 0)
  32. MovementLoopAddLocation(NPC, 139.71, 6.73, -115.17, 2, 0)
  33. MovementLoopAddLocation(NPC, 132.27, 7, -115.14, 2, 0)
  34. MovementLoopAddLocation(NPC, 132.26, 7, -101.15, 2, 0)
  35. MovementLoopAddLocation(NPC, 119.18, 7, -100.93, 2, 0)
  36. MovementLoopAddLocation(NPC, 113.42, 7, -93.49, 2, 0)
  37. MovementLoopAddLocation(NPC, 112.91, 7, -86.92, 2, 0)
  38. MovementLoopAddLocation(NPC, 122.26, 7, -86.6, 2, 0)
  39. MovementLoopAddLocation(NPC, 123.53, 6.9, -79.83, 2, 0)
  40. MovementLoopAddLocation(NPC, 117.28, 6.92, -71.35, 2, 0)
  41. MovementLoopAddLocation(NPC, 124.21, 6.83, -63.83, 2, 0)
  42. MovementLoopAddLocation(NPC, 107.57, 6.89, -45.99, 2, 0)
  43. MovementLoopAddLocation(NPC, 124.21, 6.83, -63.83, 2, 0)
  44. MovementLoopAddLocation(NPC, 117.28, 6.92, -71.35, 2, 0)
  45. MovementLoopAddLocation(NPC, 123.53, 6.9, -79.83, 2, 0)
  46. MovementLoopAddLocation(NPC, 122.26, 7, -86.6, 2, 0)
  47. MovementLoopAddLocation(NPC, 112.91, 7, -86.92, 2, 0)
  48. MovementLoopAddLocation(NPC, 113.42, 7, -93.49, 2, 0)
  49. MovementLoopAddLocation(NPC, 119.18, 7, -100.93, 2, 0)
  50. MovementLoopAddLocation(NPC, 132.26, 7, -101.15, 2, 0)
  51. MovementLoopAddLocation(NPC, 132.27, 7, -115.14, 2, 0)
  52. MovementLoopAddLocation(NPC, 139.71, 6.73, -115.17, 2, 0)
  53. MovementLoopAddLocation(NPC, 150.29, 6.96, -122.42, 2, 0)
  54. MovementLoopAddLocation(NPC, 151.93, 6.95, -139.11, 2, 0)
  55. MovementLoopAddLocation(NPC, 161.45, 7.4, -139.44, 2, 0)
  56. MovementLoopAddLocation(NPC, 172.82, 6.87, -147.59, 2, 0)
  57. MovementLoopAddLocation(NPC, 168.83, 6.86, -152.12, 2, 0)
  58. MovementLoopAddLocation(NPC, 166.58, 6.88, -150.52, 2, 0)
  59. MovementLoopAddLocation(NPC, 165.58, 6.9, -155.2, 2, 0)
  60. MovementLoopAddLocation(NPC, 173.35, 6.94, -146.37, 2, 0)
  61. MovementLoopAddLocation(NPC, 167.28, 6.84, -140.23, 2, 0)
  62. MovementLoopAddLocation(NPC, 149.87, 6.99, -138.89, 2, 0)
  63. MovementLoopAddLocation(NPC, 150.04, 7.3, -171.78, 2, 0)
  64. MovementLoopAddLocation(NPC, 134.71, 7.03, -171.74, 2, 0)
  65. MovementLoopAddLocation(NPC, 127.89, 6.95, -163.11, 2, 0)
  66. MovementLoopAddLocation(NPC, 127.04, 6.79, -132.55, 2, 0)
  67. end