shriller15.lua 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. --[[
  2. Script Name : shriller15.lua
  3. Script Purpose : Waypoint Path for shriller15.lua
  4. Script Author : Devn00b
  5. Script Date : 06/10/2020 02:48:23 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, 16.43, -0.09, -174.51, 2, 0)
  18. MovementLoopAddLocation(NPC, 7.14, 0.42, -182.03, 2, 0)
  19. MovementLoopAddLocation(NPC, -1.88, -0.1, -183.28, 2, 0)
  20. MovementLoopAddLocation(NPC, -1.67, -0.14, -193.13, 2, 0)
  21. MovementLoopAddLocation(NPC, 0.67, -0.05, -188.2, 2, 0)
  22. MovementLoopAddLocation(NPC, -3.83, -0.09, -188.53, 2, 0)
  23. MovementLoopAddLocation(NPC, -4.36, -0.02, -190.27, 2, 0)
  24. MovementLoopAddLocation(NPC, -2.36, -0.16, -192.81, 2, 0)
  25. MovementLoopAddLocation(NPC, -4.2, 0.07, -192.68, 2, 0)
  26. MovementLoopAddLocation(NPC, -0.03, -0.1, -187.68, 2, 0)
  27. MovementLoopAddLocation(NPC, -2.18, -0.11, -190.23, 2, 0)
  28. MovementLoopAddLocation(NPC, -1.96, -0.1, -183.23, 2, 0)
  29. MovementLoopAddLocation(NPC, -7.98, -0.1, -181.88, 2, 0)
  30. MovementLoopAddLocation(NPC, -17.57, -0.18, -182.06, 2, 0)
  31. MovementLoopAddLocation(NPC, -33.33, -0.18, -164.14, 2, 0)
  32. MovementLoopAddLocation(NPC, -34.11, -0.01, -161.58, 2, 0)
  33. MovementLoopAddLocation(NPC, -34.51, -0.01, -152.39, 2, 0)
  34. MovementLoopAddLocation(NPC, -30.05, 0.26, -145.61, 2, 0)
  35. MovementLoopAddLocation(NPC, -12.65, -0.11, -145.92, 2, 0)
  36. MovementLoopAddLocation(NPC, 0.13, -0.09, -145.63, 2, 0)
  37. MovementLoopAddLocation(NPC, 0.65, -0.12, -133.25, 2, 0)
  38. MovementLoopAddLocation(NPC, 0.84, -0.09, -105.25, 2, 0)
  39. MovementLoopAddLocation(NPC, -4.08, 0.85, -111.53, 2, 0)
  40. MovementLoopAddLocation(NPC, 3.21, -0.09, -110.17, 2, 0)
  41. MovementLoopAddLocation(NPC, -0.41, -0.09, -112.99, 2, 0)
  42. MovementLoopAddLocation(NPC, 0.99, 0, -124.09, 2, 0)
  43. MovementLoopAddLocation(NPC, -0.41, -0.09, -112.99, 2, 0)
  44. MovementLoopAddLocation(NPC, 3.21, -0.09, -110.17, 2, 0)
  45. MovementLoopAddLocation(NPC, -4.08, 0.85, -111.53, 2, 0)
  46. MovementLoopAddLocation(NPC, 0.84, -0.09, -105.25, 2, 0)
  47. MovementLoopAddLocation(NPC, 0.65, -0.12, -133.25, 2, 0)
  48. MovementLoopAddLocation(NPC, 0.13, -0.09, -145.63, 2, 0)
  49. MovementLoopAddLocation(NPC, -12.65, -0.11, -145.92, 2, 0)
  50. MovementLoopAddLocation(NPC, -30.05, 0.26, -145.61, 2, 0)
  51. MovementLoopAddLocation(NPC, -34.51, -0.01, -152.39, 2, 0)
  52. MovementLoopAddLocation(NPC, -34.11, -0.01, -161.58, 2, 0)
  53. MovementLoopAddLocation(NPC, -33.33, -0.18, -164.14, 2, 0)
  54. MovementLoopAddLocation(NPC, -17.57, -0.18, -182.06, 2, 0)
  55. MovementLoopAddLocation(NPC, -7.98, -0.1, -181.88, 2, 0)
  56. MovementLoopAddLocation(NPC, -1.96, -0.1, -183.23, 2, 0)
  57. MovementLoopAddLocation(NPC, -2.18, -0.11, -190.23, 2, 0)
  58. MovementLoopAddLocation(NPC, -0.03, -0.1, -187.68, 2, 0)
  59. MovementLoopAddLocation(NPC, -4.2, 0.07, -192.68, 2, 0)
  60. MovementLoopAddLocation(NPC, -2.36, -0.16, -192.81, 2, 0)
  61. MovementLoopAddLocation(NPC, -4.36, -0.02, -190.27, 2, 0)
  62. MovementLoopAddLocation(NPC, -3.83, -0.09, -188.53, 2, 0)
  63. MovementLoopAddLocation(NPC, 0.67, -0.05, -188.2, 2, 0)
  64. MovementLoopAddLocation(NPC, -1.67, -0.14, -193.13, 2, 0)
  65. MovementLoopAddLocation(NPC, -1.88, -0.1, -183.28, 2, 0)
  66. MovementLoopAddLocation(NPC, 7.14, 0.42, -182.03, 2, 0)
  67. MovementLoopAddLocation(NPC, 16.43, -0.09, -174.51, 2, 0)
  68. end