anenragedwolfHillside3.lua 5.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. --[[
  2. Script Name : SpawnScripts/Antonica/anenragedwolfHillside3.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.02.28 09:02:16
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/NPCModule"
  9. function spawn(NPC, Spawn)
  10. NPCModule(NPC, Spawn)
  11. AddTimer(NPC, 6000, "waypoints")
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. end
  16. function respawn(NPC)
  17. spawn(NPC)
  18. end
  19. function waypoints(NPC)
  20. MovementLoopAddLocation(NPC, -2017.65, -29.19, 370.7, 2, 0)
  21. MovementLoopAddLocation(NPC, -2020.88, -31.1, 375.24, 2, 0)
  22. MovementLoopAddLocation(NPC, -2024.56, -33, 380.13, 2, 0)
  23. MovementLoopAddLocation(NPC, -2028.36, -35.38, 385.16, 2, 0)
  24. MovementLoopAddLocation(NPC, -2032.84, -37.28, 386.81, 2, 0)
  25. MovementLoopAddLocation(NPC, -2042.65, -38.36, 388.84, 2, 0)
  26. MovementLoopAddLocation(NPC, -2050.24, -37.76, 389.21, 2, 0)
  27. MovementLoopAddLocation(NPC, -2052.02, -37.6, 387.31, 2, 0)
  28. MovementLoopAddLocation(NPC, -2057.06, -38.31, 377.47, 2, 0)
  29. MovementLoopAddLocation(NPC, -2061.75, -39.32, 368.3, 2, 0)
  30. MovementLoopAddLocation(NPC, -2066.04, -39.4, 359.92, 2, 0)
  31. MovementLoopAddLocation(NPC, -2070.29, -38.81, 351.63, 2, 0)
  32. MovementLoopAddLocation(NPC, -2074.57, -37.32, 343.26, 2, 0)
  33. MovementLoopAddLocation(NPC, -2078.93, -34.92, 334.74, 2, 0)
  34. MovementLoopAddLocation(NPC, -2083.01, -31.76, 326.77, 2, 0)
  35. MovementLoopAddLocation(NPC, -2086.97, -28.22, 319.05, 2, 0)
  36. MovementLoopAddLocation(NPC, -2090.78, -24.78, 311.6, 2, 0)
  37. MovementLoopAddLocation(NPC, -2089.18, -24.13, 310.44, 2, 0)
  38. MovementLoopAddLocation(NPC, -2082.23, -21.14, 305.41, 2, 0)
  39. MovementLoopAddLocation(NPC, -2075.08, -17.58, 300.24, 2, 0)
  40. MovementLoopAddLocation(NPC, -2068.21, -12.79, 295.26, 2, 0)
  41. MovementLoopAddLocation(NPC, -2062.2, -9.12, 290.92, 2, 0)
  42. MovementLoopAddLocation(NPC, -2055.49, -6.34, 286.06, 2, 0)
  43. MovementLoopAddLocation(NPC, -2048.84, -3.57, 281.25, 2, 0)
  44. MovementLoopAddLocation(NPC, -2042.51, -1.16, 276.67, 2, 0)
  45. MovementLoopAddLocation(NPC, -2035.72, 1.29, 271.76, 2, 0)
  46. MovementLoopAddLocation(NPC, -2028.78, 3.23, 266.73, 2, 0)
  47. MovementLoopAddLocation(NPC, -2021.82, 5.21, 261.7, 2, 0)
  48. MovementLoopAddLocation(NPC, -2019.88, 5.28, 262.18, 2, 0)
  49. MovementLoopAddLocation(NPC, -2015.32, 4, 267.96, 2, 0)
  50. MovementLoopAddLocation(NPC, -2010.44, 2.61, 274.14, 2, 0)
  51. MovementLoopAddLocation(NPC, -2004.89, 0.99, 281.16, 2, 0)
  52. MovementLoopAddLocation(NPC, -1999.67, -0.64, 287.78, 2, 0)
  53. MovementLoopAddLocation(NPC, -1994.74, -2.05, 294.03, 2, 0)
  54. MovementLoopAddLocation(NPC, -1989.8, -3.12, 300.28, 2, 0)
  55. MovementLoopAddLocation(NPC, -1984.22, -3.6, 307.35, 2, 0)
  56. MovementLoopAddLocation(NPC, -1979.19, -3.39, 313.72, 2, 0)
  57. MovementLoopAddLocation(NPC, -1974.55, -3.01, 319.59, 2, 0)
  58. MovementLoopAddLocation(NPC, -1975.11, -3.14, 320.46, 2, 0)
  59. MovementLoopAddLocation(NPC, -1982.87, -4.21, 317.98, 2, 0)
  60. MovementLoopAddLocation(NPC, -1990.91, -4.93, 315.42, 2, 0)
  61. MovementLoopAddLocation(NPC, -1999.12, -5.12, 312.79, 2, 0)
  62. MovementLoopAddLocation(NPC, -2006.11, -4.96, 310.56, 2, 0)
  63. MovementLoopAddLocation(NPC, -2012.55, -4.78, 308.5, 2, 0)
  64. MovementLoopAddLocation(NPC, -2015.55, -4.88, 308.55, 2, 0)
  65. MovementLoopAddLocation(NPC, -2021.88, -7.34, 310.93, 2, 0)
  66. MovementLoopAddLocation(NPC, -2028.69, -9.93, 313.51, 2, 0)
  67. MovementLoopAddLocation(NPC, -2036.07, -13.2, 316.29, 2, 0)
  68. MovementLoopAddLocation(NPC, -2043.95, -17.25, 319.27, 2, 0)
  69. MovementLoopAddLocation(NPC, -2051.34, -21.61, 322.06, 2, 0)
  70. MovementLoopAddLocation(NPC, -2058.88, -25.68, 324.91, 2, 0)
  71. MovementLoopAddLocation(NPC, -2066.4, -29.19, 327.75, 2, 0)
  72. MovementLoopAddLocation(NPC, -2073.21, -31.6, 330.32, 2, 0)
  73. MovementLoopAddLocation(NPC, -2080.23, -34.42, 332.97, 2, 0)
  74. MovementLoopAddLocation(NPC, -2086.53, -37.13, 335.34, 2, 0)
  75. MovementLoopAddLocation(NPC, -2087.26, -38.35, 337.76, 2, 0)
  76. MovementLoopAddLocation(NPC, -2086.04, -40.71, 344.53, 2, 0)
  77. MovementLoopAddLocation(NPC, -2084.71, -42.26, 351.91, 2, 0)
  78. MovementLoopAddLocation(NPC, -2083.57, -43.07, 358.22, 2, 0)
  79. MovementLoopAddLocation(NPC, -2080.25, -42.55, 360.81, 2, 0)
  80. MovementLoopAddLocation(NPC, -2074.19, -41.54, 363.67, 2, 0)
  81. MovementLoopAddLocation(NPC, -2066.77, -40.29, 367.17, 2, 0)
  82. MovementLoopAddLocation(NPC, -2059.98, -39.1, 370.38, 2, 0)
  83. MovementLoopAddLocation(NPC, -2057.68, -38.59, 370.48, 2, 0)
  84. MovementLoopAddLocation(NPC, -2051.7, -37.12, 368.76, 2, 0)
  85. MovementLoopAddLocation(NPC, -2044.12, -35.06, 366.59, 2, 0)
  86. MovementLoopAddLocation(NPC, -2037.29, -32.89, 364.64, 2, 0)
  87. MovementLoopAddLocation(NPC, -2035.33, -32.68, 365.95, 2, 0)
  88. MovementLoopAddLocation(NPC, -2030.89, -32.08, 369.94, 2, 0)
  89. MovementLoopAddLocation(NPC, -2025.6, -31.93, 374.68, 2, 0)
  90. MovementLoopAddLocation(NPC, -2020.02, -32.07, 379.68, 2, 0)
  91. MovementLoopAddLocation(NPC, -2013.82, -32.36, 385.24, 2, 0)
  92. MovementLoopAddLocation(NPC, -2013.71, -30.25, 377.68, 2, 0)
  93. MovementLoopAddLocation(NPC, -2017.65, -29.19, 370.7, 2, 0)
  94. end