shriller3.lua 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. --[[
  2. Script Name : shriller3.lua
  3. Script Purpose : Waypoint Path for shriller3.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 05:33:52 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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, 245.98, -6.97, -36.52, 2, 0)
  18. MovementLoopAddLocation(NPC, 246.48, -6.95, -47.08, 2, 0)
  19. MovementLoopAddLocation(NPC, 238.52, -7, -58.48, 2, 0)
  20. MovementLoopAddLocation(NPC, 237.99, -6.73, -75.69, 2, 0)
  21. MovementLoopAddLocation(NPC, 237.88, -6.86, -80.85, 2, 0)
  22. MovementLoopAddLocation(NPC, 250.75, -6.86, -80.35, 2, 0)
  23. MovementLoopAddLocation(NPC, 251, -6.86, -85.16, 2, 0)
  24. MovementLoopAddLocation(NPC, 247.18, -6.86, -97.68, 2, 0)
  25. MovementLoopAddLocation(NPC, 247.04, -6.86, -103.83, 2, 0)
  26. MovementLoopAddLocation(NPC, 234.9, -6.86, -108.78, 2, 0)
  27. MovementLoopAddLocation(NPC, 233.88, -6.86, -91.98, 2, 0)
  28. MovementLoopAddLocation(NPC, 222.08, -6.83, -92.15, 2, 0)
  29. MovementLoopAddLocation(NPC, 234.32, -6.86, -92.27, 2, 0)
  30. MovementLoopAddLocation(NPC, 235.29, -6.86, -103.75, 2, 0)
  31. MovementLoopAddLocation(NPC, 242.09, -6.86, -116.07, 2, 0)
  32. MovementLoopAddLocation(NPC, 242.97, -6.86, -120.46, 2, 0)
  33. MovementLoopAddLocation(NPC, 243.11, -6.86, -132.73, 2, 0)
  34. MovementLoopAddLocation(NPC, 241.08, -6.86, -145.45, 2, 0)
  35. MovementLoopAddLocation(NPC, 234.89, -6.86, -148.67, 2, 0)
  36. MovementLoopAddLocation(NPC, 234.54, -6.86, -152.56, 2, 0)
  37. MovementLoopAddLocation(NPC, 246.34, -6.86, -154.98, 2, 0)
  38. MovementLoopAddLocation(NPC, 249.11, -6.86, -172.41, 2, 0)
  39. MovementLoopAddLocation(NPC, 249.93, -6.97, -179.66, 2, 0)
  40. MovementLoopAddLocation(NPC, 257.56, -7, -192.37, 2, 0)
  41. MovementLoopAddLocation(NPC, 256.6, -6.93, -201.52, 2, 0)
  42. MovementLoopAddLocation(NPC, 257.56, -7, -192.37, 2, 0)
  43. MovementLoopAddLocation(NPC, 249.93, -6.97, -179.66, 2, 0)
  44. MovementLoopAddLocation(NPC, 249.11, -6.86, -172.41, 2, 0)
  45. MovementLoopAddLocation(NPC, 246.34, -6.86, -154.98, 2, 0)
  46. MovementLoopAddLocation(NPC, 234.54, -6.86, -152.56, 2, 0)
  47. MovementLoopAddLocation(NPC, 234.89, -6.86, -148.67, 2, 0)
  48. MovementLoopAddLocation(NPC, 241.08, -6.86, -145.45, 2, 0)
  49. MovementLoopAddLocation(NPC, 243.11, -6.86, -132.73, 2, 0)
  50. MovementLoopAddLocation(NPC, 242.97, -6.86, -120.46, 2, 0)
  51. MovementLoopAddLocation(NPC, 242.09, -6.86, -116.07, 2, 0)
  52. MovementLoopAddLocation(NPC, 235.29, -6.86, -103.75, 2, 0)
  53. MovementLoopAddLocation(NPC, 234.32, -6.86, -92.27, 2, 0)
  54. MovementLoopAddLocation(NPC, 222.08, -6.83, -92.15, 2, 0)
  55. MovementLoopAddLocation(NPC, 233.88, -6.86, -91.98, 2, 0)
  56. MovementLoopAddLocation(NPC, 234.9, -6.86, -108.78, 2, 0)
  57. MovementLoopAddLocation(NPC, 247.04, -6.86, -103.83, 2, 0)
  58. MovementLoopAddLocation(NPC, 247.18, -6.86, -97.68, 2, 0)
  59. MovementLoopAddLocation(NPC, 251, -6.86, -85.16, 2, 0)
  60. MovementLoopAddLocation(NPC, 250.75, -6.86, -80.35, 2, 0)
  61. MovementLoopAddLocation(NPC, 237.88, -6.86, -80.85, 2, 0)
  62. MovementLoopAddLocation(NPC, 237.99, -6.73, -75.69, 2, 0)
  63. MovementLoopAddLocation(NPC, 238.52, -7, -58.48, 2, 0)
  64. MovementLoopAddLocation(NPC, 246.48, -6.95, -47.08, 2, 0)
  65. MovementLoopAddLocation(NPC, 245.98, -6.97, -36.52, 2, 0)
  66. end