rotting_citizen2.lua 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. --[[
  2. Script Name : rotting_citizen2.lua
  3. Script Purpose : Waypoint Path for rotting_citizen2.lua
  4. Script Author : Devn00b
  5. Script Date : 05/15/2020 12:19:55 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, -191.54, 0, -9.9, 2, 0)
  19. MovementLoopAddLocation(NPC, -181.44, 0, -3.16, 2, 0)
  20. MovementLoopAddLocation(NPC, -172.2, 0, -11.87, 2, 0)
  21. MovementLoopAddLocation(NPC, -180.63, 0, -20.23, 2, 0)
  22. MovementLoopAddLocation(NPC, -178.51, 0, -23.06, 2, 0)
  23. MovementLoopAddLocation(NPC, -179.86, 0, -24.84, 2, 0)
  24. MovementLoopAddLocation(NPC, -178.72, 0, -23.87, 2, 0)
  25. MovementLoopAddLocation(NPC, -180.89, 0, -19.24, 2, 0)
  26. MovementLoopAddLocation(NPC, -178.75, 0, -14.7, 2, 0)
  27. MovementLoopAddLocation(NPC, -180.52, 0, -10.75, 2, 0)
  28. MovementLoopAddLocation(NPC, -188.53, 0, -7.37, 2, 0)
  29. MovementLoopAddLocation(NPC, -187.38, 0, -13.92, 2, 0)
  30. MovementLoopAddLocation(NPC, -190.55, 0, -10.35, 2, 0)
  31. MovementLoopAddLocation(NPC, -194.08, 0, -11.46, 2, 0)
  32. MovementLoopAddLocation(NPC, -196.07, 0, -13.59, 2, 0)
  33. MovementLoopAddLocation(NPC, -194.43, 0, -34.97, 2, 0)
  34. MovementLoopAddLocation(NPC, -198.08, 0, -30.84, 2, 0)
  35. MovementLoopAddLocation(NPC, -205.8, 0, -25.32, 2, 0)
  36. MovementLoopAddLocation(NPC, -209.61, 0, -28.74, 2, 0)
  37. MovementLoopAddLocation(NPC, -212.55, 0, -27.26, 2, 0)
  38. MovementLoopAddLocation(NPC, -211.44, 0, -28.41, 2, 0)
  39. MovementLoopAddLocation(NPC, -207.8, 0, -27.12, 2, 0)
  40. MovementLoopAddLocation(NPC, -199.8, 0, -20.1, 2, 0)
  41. MovementLoopAddLocation(NPC, -193.93, 0, -18.52, 2, 0)
  42. MovementLoopAddLocation(NPC, -204.1, 0, -30.7, 2, 0)
  43. MovementLoopAddLocation(NPC, -195.01, 0, -12.49, 2, 0)
  44. MovementLoopAddLocation(NPC, -191.73, 0, -9.96, 2, 0)
  45. MovementLoopAddLocation(NPC, -195.01, 0, -12.49, 2, 0)
  46. MovementLoopAddLocation(NPC, -204.1, 0, -30.7, 2, 0)
  47. MovementLoopAddLocation(NPC, -193.93, 0, -18.52, 2, 0)
  48. MovementLoopAddLocation(NPC, -199.8, 0, -20.1, 2, 0)
  49. MovementLoopAddLocation(NPC, -207.8, 0, -27.12, 2, 0)
  50. MovementLoopAddLocation(NPC, -211.44, 0, -28.41, 2, 0)
  51. MovementLoopAddLocation(NPC, -212.55, 0, -27.26, 2, 0)
  52. MovementLoopAddLocation(NPC, -209.61, 0, -28.74, 2, 0)
  53. MovementLoopAddLocation(NPC, -205.8, 0, -25.32, 2, 0)
  54. MovementLoopAddLocation(NPC, -198.08, 0, -30.84, 2, 0)
  55. MovementLoopAddLocation(NPC, -194.43, 0, -34.97, 2, 0)
  56. MovementLoopAddLocation(NPC, -196.07, 0, -13.59, 2, 0)
  57. MovementLoopAddLocation(NPC, -194.08, 0, -11.46, 2, 0)
  58. MovementLoopAddLocation(NPC, -190.55, 0, -10.35, 2, 0)
  59. MovementLoopAddLocation(NPC, -187.38, 0, -13.92, 2, 0)
  60. MovementLoopAddLocation(NPC, -188.53, 0, -7.37, 2, 0)
  61. MovementLoopAddLocation(NPC, -180.52, 0, -10.75, 2, 0)
  62. MovementLoopAddLocation(NPC, -178.75, 0, -14.7, 2, 0)
  63. MovementLoopAddLocation(NPC, -180.89, 0, -19.24, 2, 0)
  64. MovementLoopAddLocation(NPC, -178.72, 0, -23.87, 2, 0)
  65. MovementLoopAddLocation(NPC, -179.86, 0, -24.84, 2, 0)
  66. MovementLoopAddLocation(NPC, -178.51, 0, -23.06, 2, 0)
  67. MovementLoopAddLocation(NPC, -180.63, 0, -20.23, 2, 0)
  68. MovementLoopAddLocation(NPC, -172.2, 0, -11.87, 2, 0)
  69. MovementLoopAddLocation(NPC, -181.44, 0, -3.16, 2, 0)
  70. MovementLoopAddLocation(NPC, -191.54, 0, -9.9, 2, 0)
  71. end