shriller.lua 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. --[[
  2. Script Name : shriller.lua
  3. Script Purpose : Waypoint Path for shriller.lua
  4. Script Author : Devn00b
  5. Script Date : 06/24/2020 03:07:20 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, 131.65, -0.02, -139.99, 2, 0)
  18. MovementLoopAddLocation(NPC, 128.88, -0.05, -132.15, 2, 0)
  19. MovementLoopAddLocation(NPC, 120.2, 0, -120.19, 2, 0)
  20. MovementLoopAddLocation(NPC, 119.89, 0.11, -110.36, 2, 0)
  21. MovementLoopAddLocation(NPC, 110.33, -1.25, -104.6, 2, 0)
  22. MovementLoopAddLocation(NPC, 107.84, -1.99, -98.9, 2, 0)
  23. MovementLoopAddLocation(NPC, 109.74, -3.08, -92.5, 2, 0)
  24. MovementLoopAddLocation(NPC, 114.92, -4.18, -87.02, 2, 0)
  25. MovementLoopAddLocation(NPC, 121.03, -4.94, -85.85, 2, 0)
  26. MovementLoopAddLocation(NPC, 127.89, -6.03, -89.68, 2, 0)
  27. MovementLoopAddLocation(NPC, 131.61, -6.92, -97.63, 2, 0)
  28. MovementLoopAddLocation(NPC, 144.02, -6.98, -97.6, 2, 0)
  29. MovementLoopAddLocation(NPC, 157.18, -6.36, -108.01, 2, 0)
  30. MovementLoopAddLocation(NPC, 184.75, -7.16, -109.31, 2, 0)
  31. MovementLoopAddLocation(NPC, 199.62, -6.91, -122.95, 2, 0)
  32. MovementLoopAddLocation(NPC, 208.14, -6.97, -119.15, 2, 0)
  33. MovementLoopAddLocation(NPC, 222.82, -6.85, -102.44, 2, 0)
  34. MovementLoopAddLocation(NPC, 222.07, -6.89, -90.91, 2, 0)
  35. MovementLoopAddLocation(NPC, 235.22, -6.86, -92.23, 2, 0)
  36. MovementLoopAddLocation(NPC, 222.07, -6.89, -90.91, 2, 0)
  37. MovementLoopAddLocation(NPC, 222.82, -6.85, -102.44, 2, 0)
  38. MovementLoopAddLocation(NPC, 208.14, -6.97, -119.15, 2, 0)
  39. MovementLoopAddLocation(NPC, 199.62, -6.91, -122.95, 2, 0)
  40. MovementLoopAddLocation(NPC, 184.75, -7.16, -109.31, 2, 0)
  41. MovementLoopAddLocation(NPC, 157.18, -6.36, -108.01, 2, 0)
  42. MovementLoopAddLocation(NPC, 144.02, -6.98, -97.6, 2, 0)
  43. MovementLoopAddLocation(NPC, 131.61, -6.92, -97.63, 2, 0)
  44. MovementLoopAddLocation(NPC, 127.89, -6.03, -89.68, 2, 0)
  45. MovementLoopAddLocation(NPC, 121.03, -4.94, -85.85, 2, 0)
  46. MovementLoopAddLocation(NPC, 114.92, -4.18, -87.02, 2, 0)
  47. MovementLoopAddLocation(NPC, 109.74, -3.08, -92.5, 2, 0)
  48. MovementLoopAddLocation(NPC, 107.84, -1.99, -98.9, 2, 0)
  49. MovementLoopAddLocation(NPC, 110.33, -1.25, -104.6, 2, 0)
  50. MovementLoopAddLocation(NPC, 119.89, 0.11, -110.36, 2, 0)
  51. MovementLoopAddLocation(NPC, 120.2, 0, -120.19, 2, 0)
  52. MovementLoopAddLocation(NPC, 128.88, -0.05, -132.15, 2, 0)
  53. MovementLoopAddLocation(NPC, 131.65, -0.02, -139.99, 2, 0)
  54. end