restless_corpse3.lua 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. --[[
  2. Script Name : restless_corpse3.lua
  3. Script Purpose : Waypoint Path for restless_corpse3.lua
  4. Script Author : Devn00b
  5. Script Date : 05/18/2020 11:13:29 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, 106.9, 6.87, -45.65, 2, 0)
  19. MovementLoopAddLocation(NPC, 122.99, 6.86, -62.66, 2, 0)
  20. MovementLoopAddLocation(NPC, 117.29, 6.9, -69.2, 2, 0)
  21. MovementLoopAddLocation(NPC, 122.98, 6.9, -79.74, 2, 0)
  22. MovementLoopAddLocation(NPC, 122.93, 7, -87.42, 2, 0)
  23. MovementLoopAddLocation(NPC, 113.11, 7, -88.3, 2, 0)
  24. MovementLoopAddLocation(NPC, 114.06, 7, -96.8, 2, 0)
  25. MovementLoopAddLocation(NPC, 123.28, 7, -97.97, 2, 0)
  26. MovementLoopAddLocation(NPC, 124.57, 7, -101.44, 2, 0)
  27. MovementLoopAddLocation(NPC, 114.96, 7, -99.3, 2, 0)
  28. MovementLoopAddLocation(NPC, 113.41, 7, -91.69, 2, 0)
  29. MovementLoopAddLocation(NPC, 113.06, 7, -88.36, 2, 0)
  30. MovementLoopAddLocation(NPC, 122.62, 7, -87.67, 2, 0)
  31. MovementLoopAddLocation(NPC, 122.18, 6.86, -79.23, 2, 0)
  32. MovementLoopAddLocation(NPC, 117.94, 6.88, -71.33, 2, 0)
  33. MovementLoopAddLocation(NPC, 124.17, 6.82, -63.04, 2, 0)
  34. MovementLoopAddLocation(NPC, 103.6, 6.87, -44.16, 2, 0)
  35. MovementLoopAddLocation(NPC, 97.79, 6.88, -47.14, 2, 0)
  36. MovementLoopAddLocation(NPC, 96.84, 6.89, -59, 2, 0)
  37. MovementLoopAddLocation(NPC, 89.06, 6.85, -64.74, 2, 0)
  38. MovementLoopAddLocation(NPC, 77.88, 6.88, -62.21, 2, 0)
  39. MovementLoopAddLocation(NPC, 72.34, 6.87, -58.71, 2, 0)
  40. MovementLoopAddLocation(NPC, 59.3, 6.98, -58.2, 2, 0)
  41. MovementLoopAddLocation(NPC, 72.34, 6.87, -58.71, 2, 0)
  42. MovementLoopAddLocation(NPC, 77.88, 6.88, -62.21, 2, 0)
  43. MovementLoopAddLocation(NPC, 89.06, 6.85, -64.74, 2, 0)
  44. MovementLoopAddLocation(NPC, 96.84, 6.89, -59, 2, 0)
  45. MovementLoopAddLocation(NPC, 97.79, 6.88, -47.14, 2, 0)
  46. MovementLoopAddLocation(NPC, 103.6, 6.87, -44.16, 2, 0)
  47. MovementLoopAddLocation(NPC, 124.17, 6.82, -63.04, 2, 0)
  48. MovementLoopAddLocation(NPC, 117.94, 6.88, -71.33, 2, 0)
  49. MovementLoopAddLocation(NPC, 122.18, 6.86, -79.23, 2, 0)
  50. MovementLoopAddLocation(NPC, 122.62, 7, -87.67, 2, 0)
  51. MovementLoopAddLocation(NPC, 113.06, 7, -88.36, 2, 0)
  52. MovementLoopAddLocation(NPC, 113.41, 7, -91.69, 2, 0)
  53. MovementLoopAddLocation(NPC, 114.96, 7, -99.3, 2, 0)
  54. MovementLoopAddLocation(NPC, 124.57, 7, -101.44, 2, 0)
  55. MovementLoopAddLocation(NPC, 123.28, 7, -97.97, 2, 0)
  56. MovementLoopAddLocation(NPC, 114.06, 7, -96.8, 2, 0)
  57. MovementLoopAddLocation(NPC, 113.11, 7, -88.3, 2, 0)
  58. MovementLoopAddLocation(NPC, 122.93, 7, -87.42, 2, 0)
  59. MovementLoopAddLocation(NPC, 122.98, 6.9, -79.74, 2, 0)
  60. MovementLoopAddLocation(NPC, 117.29, 6.9, -69.2, 2, 0)
  61. MovementLoopAddLocation(NPC, 122.99, 6.86, -62.66, 2, 0)
  62. MovementLoopAddLocation(NPC, 106.9, 6.87, -45.65, 2, 0)
  63. end