deathly_scarab15.lua 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. --[[
  2. Script Name : deathly_scarab15.lua
  3. Script Purpose : Waypoint Path for deathly_scarab15.lua
  4. Script Author : Devn00b
  5. Script Date : 06/10/2020 02:15:10 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, -14.36, -0.09, -120.38, 2, 0)
  18. MovementLoopAddLocation(NPC, 1.06, -0.09, -119.52, 2, 0)
  19. MovementLoopAddLocation(NPC, 1.09, -0.09, -123.43, 2, 0)
  20. MovementLoopAddLocation(NPC, 1.16, -0.15, -129.77, 2, 0)
  21. MovementLoopAddLocation(NPC, 2.49, -0.16, -145.73, 2, 0)
  22. MovementLoopAddLocation(NPC, -9.86, 0.18, -146.47, 2, 0)
  23. MovementLoopAddLocation(NPC, -32.04, -0.03, -146.74, 2, 0)
  24. MovementLoopAddLocation(NPC, -34.58, -0.19, -154.83, 2, 0)
  25. MovementLoopAddLocation(NPC, -34.58, -0.18, -166.28, 2, 0)
  26. MovementLoopAddLocation(NPC, -30.42, -0.18, -172.14, 2, 0)
  27. MovementLoopAddLocation(NPC, -17.78, -0.18, -181.58, 2, 0)
  28. MovementLoopAddLocation(NPC, -7.83, -0.09, -182.88, 2, 0)
  29. MovementLoopAddLocation(NPC, 6.87, 0.41, -182.68, 2, 0)
  30. MovementLoopAddLocation(NPC, 13.06, -0.22, -177.41, 2, 0)
  31. MovementLoopAddLocation(NPC, 14.38, -0.07, -170.7, 2, 0)
  32. MovementLoopAddLocation(NPC, 15.59, -0.17, -160.46, 2, 0)
  33. MovementLoopAddLocation(NPC, 15.64, -0.18, -145.42, 2, 0)
  34. MovementLoopAddLocation(NPC, 15.87, -0.07, -136.49, 2, 0)
  35. MovementLoopAddLocation(NPC, 30.38, -0.01, -134.59, 2, 0)
  36. MovementLoopAddLocation(NPC, 35.96, -0.03, -128.3, 2, 0)
  37. MovementLoopAddLocation(NPC, 37.06, 0.09, -122.25, 2, 0)
  38. MovementLoopAddLocation(NPC, 36.4, -0.08, -115.12, 2, 0)
  39. MovementLoopAddLocation(NPC, 31.64, -0.07, -110.06, 2, 0)
  40. MovementLoopAddLocation(NPC, 24.92, -0.09, -110.28, 2, 0)
  41. MovementLoopAddLocation(NPC, 31.64, -0.07, -110.06, 2, 0)
  42. MovementLoopAddLocation(NPC, 36.4, -0.08, -115.12, 2, 0)
  43. MovementLoopAddLocation(NPC, 37.06, 0.09, -122.25, 2, 0)
  44. MovementLoopAddLocation(NPC, 35.96, -0.03, -128.3, 2, 0)
  45. MovementLoopAddLocation(NPC, 30.38, -0.01, -134.59, 2, 0)
  46. MovementLoopAddLocation(NPC, 15.87, -0.07, -136.49, 2, 0)
  47. MovementLoopAddLocation(NPC, 15.64, -0.18, -145.42, 2, 0)
  48. MovementLoopAddLocation(NPC, 15.59, -0.17, -160.46, 2, 0)
  49. MovementLoopAddLocation(NPC, 14.38, -0.07, -170.7, 2, 0)
  50. MovementLoopAddLocation(NPC, 13.06, -0.22, -177.41, 2, 0)
  51. MovementLoopAddLocation(NPC, 6.87, 0.41, -182.68, 2, 0)
  52. MovementLoopAddLocation(NPC, -7.83, -0.09, -182.88, 2, 0)
  53. MovementLoopAddLocation(NPC, -17.78, -0.18, -181.58, 2, 0)
  54. MovementLoopAddLocation(NPC, -30.42, -0.18, -172.14, 2, 0)
  55. MovementLoopAddLocation(NPC, -34.58, -0.18, -166.28, 2, 0)
  56. MovementLoopAddLocation(NPC, -34.58, -0.19, -154.83, 2, 0)
  57. MovementLoopAddLocation(NPC, -32.04, -0.03, -146.74, 2, 0)
  58. MovementLoopAddLocation(NPC, -9.86, 0.18, -146.47, 2, 0)
  59. MovementLoopAddLocation(NPC, 2.49, -0.16, -145.73, 2, 0)
  60. MovementLoopAddLocation(NPC, 1.16, -0.15, -129.77, 2, 0)
  61. MovementLoopAddLocation(NPC, 1.09, -0.09, -123.43, 2, 0)
  62. MovementLoopAddLocation(NPC, 1.06, -0.09, -119.52, 2, 0)
  63. MovementLoopAddLocation(NPC, -14.36, -0.09, -120.38, 2, 0)
  64. end