deathly_scarab12.lua 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. --[[
  2. Script Name : deathly_scarab12.lua
  3. Script Purpose : Waypoint Path for deathly_scarab12.lua
  4. Script Author : Devn00b
  5. Script Date : 06/09/2020 12:36:04 AM
  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, 65.54, -0.13, -31.72, 2, 0)
  18. MovementLoopAddLocation(NPC, 43.05, -0.17, -30.14, 2, 0)
  19. MovementLoopAddLocation(NPC, 31.6, -0.13, -31.54, 2, 0)
  20. MovementLoopAddLocation(NPC, 25.05, -0.24, -38.64, 2, 0)
  21. MovementLoopAddLocation(NPC, 18.03, -0.18, -46.41, 2, 0)
  22. MovementLoopAddLocation(NPC, 10.26, -0.2, -46.33, 2, 0)
  23. MovementLoopAddLocation(NPC, 5.54, 0.41, -39.13, 2, 0)
  24. MovementLoopAddLocation(NPC, 3.86, -0.18, -30.94, 2, 0)
  25. MovementLoopAddLocation(NPC, -1.96, -0.2, -28.63, 2, 0)
  26. MovementLoopAddLocation(NPC, -8.47, -0.21, -31.33, 2, 0)
  27. MovementLoopAddLocation(NPC, -14.13, -0.15, -37.93, 2, 0)
  28. MovementLoopAddLocation(NPC, -13.22, 0.46, -44.08, 2, 0)
  29. MovementLoopAddLocation(NPC, -8.22, 0.51, -49.36, 2, 0)
  30. MovementLoopAddLocation(NPC, -4.87, -0.06, -53.15, 2, 0)
  31. MovementLoopAddLocation(NPC, -2.83, -0.04, -56.07, 2, 0)
  32. MovementLoopAddLocation(NPC, -7.62, -0.09, -56.18, 2, 0)
  33. MovementLoopAddLocation(NPC, -5.13, -0.04, -49.85, 2, 0)
  34. MovementLoopAddLocation(NPC, -5.61, -0.13, -55.68, 2, 0)
  35. MovementLoopAddLocation(NPC, -13.46, 0.45, -44.33, 2, 0)
  36. MovementLoopAddLocation(NPC, -13.46, 0.45, -44.33, 2, 0)
  37. MovementLoopAddLocation(NPC, -12.7, -0.07, -48.43, 2, 0)
  38. MovementLoopAddLocation(NPC, -9.56, -0.05, -45.53, 2, 0)
  39. MovementLoopAddLocation(NPC, -14.46, -0.07, -46.62, 2, 0)
  40. MovementLoopAddLocation(NPC, -13.19, 0.46, -44, 2, 0)
  41. MovementLoopAddLocation(NPC, -9.9, -0.04, -44.97, 2, 0)
  42. MovementLoopAddLocation(NPC, -14.23, 0.39, -43.48, 2, 0)
  43. MovementLoopAddLocation(NPC, -9.9, -0.04, -44.97, 2, 0)
  44. MovementLoopAddLocation(NPC, -13.19, 0.46, -44, 2, 0)
  45. MovementLoopAddLocation(NPC, -14.46, -0.07, -46.62, 2, 0)
  46. MovementLoopAddLocation(NPC, -9.56, -0.05, -45.53, 2, 0)
  47. MovementLoopAddLocation(NPC, -12.7, -0.07, -48.43, 2, 0)
  48. MovementLoopAddLocation(NPC, -13.46, 0.45, -44.33, 2, 0)
  49. MovementLoopAddLocation(NPC, -13.46, 0.45, -44.33, 2, 0)
  50. MovementLoopAddLocation(NPC, -5.61, -0.13, -55.68, 2, 0)
  51. MovementLoopAddLocation(NPC, -5.13, -0.04, -49.85, 2, 0)
  52. MovementLoopAddLocation(NPC, -7.62, -0.09, -56.18, 2, 0)
  53. MovementLoopAddLocation(NPC, -2.83, -0.04, -56.07, 2, 0)
  54. MovementLoopAddLocation(NPC, -4.87, -0.06, -53.15, 2, 0)
  55. MovementLoopAddLocation(NPC, -8.22, 0.51, -49.36, 2, 0)
  56. MovementLoopAddLocation(NPC, -13.22, 0.46, -44.08, 2, 0)
  57. MovementLoopAddLocation(NPC, -14.13, -0.15, -37.93, 2, 0)
  58. MovementLoopAddLocation(NPC, -8.47, -0.21, -31.33, 2, 0)
  59. MovementLoopAddLocation(NPC, -1.96, -0.2, -28.63, 2, 0)
  60. MovementLoopAddLocation(NPC, 3.86, -0.18, -30.94, 2, 0)
  61. MovementLoopAddLocation(NPC, 5.54, 0.41, -39.13, 2, 0)
  62. MovementLoopAddLocation(NPC, 10.26, -0.2, -46.33, 2, 0)
  63. MovementLoopAddLocation(NPC, 18.03, -0.18, -46.41, 2, 0)
  64. MovementLoopAddLocation(NPC, 25.05, -0.24, -38.64, 2, 0)
  65. MovementLoopAddLocation(NPC, 31.6, -0.13, -31.54, 2, 0)
  66. MovementLoopAddLocation(NPC, 43.05, -0.17, -30.14, 2, 0)
  67. MovementLoopAddLocation(NPC, 65.54, -0.13, -31.72, 2, 0)
  68. end