SentryCaptainGarland.lua 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. --[[
  2. Script Name : SpawnScripts/ThunderingSteppes/SentryCaptainGarland.lua
  3. Script Author : Jabantiz
  4. Script Date : 2015.07.12 06:07:59
  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. end
  15. function respawn(NPC)
  16. spawn(NPC)
  17. end
  18. function waypoints(NPC)
  19. MovementLoopAddLocation(NPC, 249.94, 33.24, -1029.99, 2)
  20. MovementLoopAddLocation(NPC, 258.34, 32.76, -1023.70, 2)
  21. MovementLoopAddLocation(NPC, 271.59, 25.22, -1007.19, 2)
  22. MovementLoopAddLocation(NPC, 272.38, 22.43, -993.42, 2)
  23. MovementLoopAddLocation(NPC, 263.14, 16.30, -968.31, 2)
  24. MovementLoopAddLocation(NPC, 246.15, 13.15, -958.93, 2)
  25. MovementLoopAddLocation(NPC, 195.67, 13.63, -963.25, 2)
  26. MovementLoopAddLocation(NPC, 176.94, 11.48, -955.78, 2)
  27. MovementLoopAddLocation(NPC, 169.55, 9.64, -936.13, 2)
  28. MovementLoopAddLocation(NPC, 173.65, 5.79, -913.69, 2)
  29. MovementLoopAddLocation(NPC, 189.85, 3.46, -881.72, 2)
  30. MovementLoopAddLocation(NPC, 185.61, 2.89, -863.07, 2)
  31. MovementLoopAddLocation(NPC, 147.49, -2.60, -796.37, 2)
  32. MovementLoopAddLocation(NPC, 112.35, -1.82, -782.23, 2)
  33. MovementLoopAddLocation(NPC, 75.19, -2.13, -771.52, 2)
  34. MovementLoopAddLocation(NPC, 54.50, -1.69, -752.32, 2)
  35. MovementLoopAddLocation(NPC, 30.11, -1.58, -706.66, 2)
  36. MovementLoopAddLocation(NPC, 37.95, -1.48, -660.71, 2)
  37. MovementLoopAddLocation(NPC, 49.54, -1.45, -641.16, 2)
  38. MovementLoopAddLocation(NPC, 71.65, -1.06, -623.20, 2)
  39. MovementLoopAddLocation(NPC, 101.28, -2.10, -612.55, 2)
  40. MovementLoopAddLocation(NPC, 167.39, -2.70, -586.82, 2)
  41. MovementLoopAddLocation(NPC, 208.07, -1.82, -557.98, 2)
  42. MovementLoopAddLocation(NPC, 285.54, -1.21, -547.06, 2)
  43. MovementLoopAddLocation(NPC, 338.42, 10.54, -535.79, 2)
  44. MovementLoopAddLocation(NPC, 360.09, 11.65, -514.59, 2)
  45. MovementLoopAddLocation(NPC, 338.42, 10.54, -535.79, 2)
  46. MovementLoopAddLocation(NPC, 285.54, -1.21, -547.06, 2)
  47. MovementLoopAddLocation(NPC, 208.07, -1.82, -557.98, 2)
  48. MovementLoopAddLocation(NPC, 167.39, -2.70, -586.82, 2)
  49. MovementLoopAddLocation(NPC, 101.28, -2.10, -612.55, 2)
  50. MovementLoopAddLocation(NPC, 71.65, -1.06, -623.20, 2)
  51. MovementLoopAddLocation(NPC, 49.54, -1.45, -641.16, 2)
  52. MovementLoopAddLocation(NPC, 37.95, -1.48, -660.71, 2)
  53. MovementLoopAddLocation(NPC, 30.11, -1.58, -706.66, 2)
  54. MovementLoopAddLocation(NPC, 54.50, -1.69, -752.32, 2)
  55. MovementLoopAddLocation(NPC, 75.19, -2.13, -771.52, 2)
  56. MovementLoopAddLocation(NPC, 112.35, -1.82, -782.23, 2)
  57. MovementLoopAddLocation(NPC, 147.49, -2.60, -796.37, 2)
  58. MovementLoopAddLocation(NPC, 185.61, 2.89, -863.07, 2)
  59. MovementLoopAddLocation(NPC, 189.85, 3.46, -881.72, 2)
  60. MovementLoopAddLocation(NPC, 173.65, 5.79, -913.69, 2)
  61. MovementLoopAddLocation(NPC, 169.55, 9.64, -936.13, 2)
  62. MovementLoopAddLocation(NPC, 176.94, 11.48, -955.78, 2)
  63. MovementLoopAddLocation(NPC, 195.67, 13.63, -963.25, 2)
  64. MovementLoopAddLocation(NPC, 246.15, 13.15, -958.93, 2)
  65. MovementLoopAddLocation(NPC, 263.14, 16.30, -968.31, 2)
  66. MovementLoopAddLocation(NPC, 272.38, 22.43, -993.42, 2)
  67. MovementLoopAddLocation(NPC, 271.59, 25.22, -1007.19, 2)
  68. MovementLoopAddLocation(NPC, 258.34, 32.76, -1023.70, 2)
  69. end