deathly_scarab11.lua 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. --[[
  2. Script Name : deathly_scarab11.lua
  3. Script Purpose : Waypoint Path for deathly_scarab11.lua
  4. Script Author : Devn00b
  5. Script Date : 06/09/2020 12:11:05 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, 40.63, -0.18, -29.55, 2, 0)
  18. MovementLoopAddLocation(NPC, 72.34, -0.07, -31.18, 2, 0)
  19. MovementLoopAddLocation(NPC, 31.52, -0.09, -30.51, 2, 0)
  20. MovementLoopAddLocation(NPC, 17.81, -0.15, -47.31, 2, 0)
  21. MovementLoopAddLocation(NPC, 9.65, -0.18, -46.48, 2, 0)
  22. MovementLoopAddLocation(NPC, 4.64, 0.33, -39.79, 2, 0)
  23. MovementLoopAddLocation(NPC, 2.98, -0.25, -32.09, 2, 0)
  24. MovementLoopAddLocation(NPC, -3.53, -0.16, -30.35, 2, 0)
  25. MovementLoopAddLocation(NPC, -9.02, -0.14, -32.98, 2, 0)
  26. MovementLoopAddLocation(NPC, -12.92, 0.13, -37.47, 2, 0)
  27. MovementLoopAddLocation(NPC, -13.3, 0.45, -43.9, 2, 0)
  28. MovementLoopAddLocation(NPC, -8.38, 0.5, -49.97, 2, 0)
  29. MovementLoopAddLocation(NPC, -4.93, -0.08, -53.98, 2, 0)
  30. MovementLoopAddLocation(NPC, -5.02, -0.09, -61.82, 2, 0)
  31. MovementLoopAddLocation(NPC, -0.29, -0.09, -61.86, 2, 0)
  32. MovementLoopAddLocation(NPC, -0.24, -0.09, -71.54, 2, 0)
  33. MovementLoopAddLocation(NPC, -2.47, -0.09, -80.75, 2, 0)
  34. MovementLoopAddLocation(NPC, -1.47, -0.09, -85.2, 2, 0)
  35. MovementLoopAddLocation(NPC, -12.96, -0.09, -86.6, 2, 0)
  36. MovementLoopAddLocation(NPC, -10.72, -0.09, -101.29, 2, 0)
  37. MovementLoopAddLocation(NPC, -10.77, -0.09, -108.01, 2, 0)
  38. MovementLoopAddLocation(NPC, 1.26, -0.09, -109.8, 2, 0)
  39. MovementLoopAddLocation(NPC, 25.17, -0.09, -109.82, 2, 0)
  40. MovementLoopAddLocation(NPC, 1.26, -0.09, -109.8, 2, 0)
  41. MovementLoopAddLocation(NPC, -10.77, -0.09, -108.01, 2, 0)
  42. MovementLoopAddLocation(NPC, -10.72, -0.09, -101.29, 2, 0)
  43. MovementLoopAddLocation(NPC, -12.96, -0.09, -86.6, 2, 0)
  44. MovementLoopAddLocation(NPC, -1.47, -0.09, -85.2, 2, 0)
  45. MovementLoopAddLocation(NPC, -2.47, -0.09, -80.75, 2, 0)
  46. MovementLoopAddLocation(NPC, -0.24, -0.09, -71.54, 2, 0)
  47. MovementLoopAddLocation(NPC, -0.29, -0.09, -61.86, 2, 0)
  48. MovementLoopAddLocation(NPC, -5.02, -0.09, -61.82, 2, 0)
  49. MovementLoopAddLocation(NPC, -4.93, -0.08, -53.98, 2, 0)
  50. MovementLoopAddLocation(NPC, -8.38, 0.5, -49.97, 2, 0)
  51. MovementLoopAddLocation(NPC, -13.3, 0.45, -43.9, 2, 0)
  52. MovementLoopAddLocation(NPC, -12.92, 0.13, -37.47, 2, 0)
  53. MovementLoopAddLocation(NPC, -9.02, -0.14, -32.98, 2, 0)
  54. MovementLoopAddLocation(NPC, -3.53, -0.16, -30.35, 2, 0)
  55. MovementLoopAddLocation(NPC, 2.98, -0.25, -32.09, 2, 0)
  56. MovementLoopAddLocation(NPC, 4.64, 0.33, -39.79, 2, 0)
  57. MovementLoopAddLocation(NPC, 9.65, -0.18, -46.48, 2, 0)
  58. MovementLoopAddLocation(NPC, 17.81, -0.15, -47.31, 2, 0)
  59. MovementLoopAddLocation(NPC, 31.52, -0.09, -30.51, 2, 0)
  60. MovementLoopAddLocation(NPC, 72.34, -0.07, -31.18, 2, 0)
  61. MovementLoopAddLocation(NPC, 40.63, -0.18, -29.55, 2, 0)
  62. end