deathly_scarab4.lua 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. --[[
  2. Script Name : deathly_scarab4.lua
  3. Script Purpose : Waypoint Path for deathly_scarab4.lua
  4. Script Author : Devn00b
  5. Script Date : 05/18/2020 11:09:26 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. waypoints(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 67.02, 6.93, -57.84, 2, 0)
  19. MovementLoopAddLocation(NPC, 81.42, 6.87, -63.94, 2, 0)
  20. MovementLoopAddLocation(NPC, 93.07, 6.91, -64.01, 2, 0)
  21. MovementLoopAddLocation(NPC, 98.58, 6.85, -45.7, 2, 0)
  22. MovementLoopAddLocation(NPC, 105.58, 7.01, -46.23, 2, 0)
  23. MovementLoopAddLocation(NPC, 120.34, 7.49, -58.81, 2, 0)
  24. MovementLoopAddLocation(NPC, 123.65, 6.83, -62.35, 2, 0)
  25. MovementLoopAddLocation(NPC, 117.81, 6.89, -71.42, 2, 0)
  26. MovementLoopAddLocation(NPC, 122.89, 6.83, -82.12, 2, 0)
  27. MovementLoopAddLocation(NPC, 117.83, 6.88, -69.6, 2, 0)
  28. MovementLoopAddLocation(NPC, 123.86, 6.83, -62.76, 2, 0)
  29. MovementLoopAddLocation(NPC, 134.66, 6.85, -72.3, 2, 0)
  30. MovementLoopAddLocation(NPC, 149.97, 6.73, -70.83, 2, 0)
  31. MovementLoopAddLocation(NPC, 156.9, 7.18, -60.88, 2, 0)
  32. MovementLoopAddLocation(NPC, 166.2, 6.79, -54.64, 2, 0)
  33. MovementLoopAddLocation(NPC, 157.44, 6.98, -60.67, 2, 0)
  34. MovementLoopAddLocation(NPC, 149.38, 6.95, -53.1, 2, 0)
  35. MovementLoopAddLocation(NPC, 149.15, 6.99, -43.26, 2, 0)
  36. MovementLoopAddLocation(NPC, 149.38, 6.95, -53.1, 2, 0)
  37. MovementLoopAddLocation(NPC, 157.44, 6.98, -60.67, 2, 0)
  38. MovementLoopAddLocation(NPC, 166.2, 6.79, -54.64, 2, 0)
  39. MovementLoopAddLocation(NPC, 156.9, 7.18, -60.88, 2, 0)
  40. MovementLoopAddLocation(NPC, 149.97, 6.73, -70.83, 2, 0)
  41. MovementLoopAddLocation(NPC, 134.66, 6.85, -72.3, 2, 0)
  42. MovementLoopAddLocation(NPC, 123.86, 6.83, -62.76, 2, 0)
  43. MovementLoopAddLocation(NPC, 117.83, 6.88, -69.6, 2, 0)
  44. MovementLoopAddLocation(NPC, 122.89, 6.83, -82.12, 2, 0)
  45. MovementLoopAddLocation(NPC, 117.81, 6.89, -71.42, 2, 0)
  46. MovementLoopAddLocation(NPC, 123.65, 6.83, -62.35, 2, 0)
  47. MovementLoopAddLocation(NPC, 120.34, 7.49, -58.81, 2, 0)
  48. MovementLoopAddLocation(NPC, 105.58, 7.01, -46.23, 2, 0)
  49. MovementLoopAddLocation(NPC, 98.58, 6.85, -45.7, 2, 0)
  50. MovementLoopAddLocation(NPC, 93.07, 6.91, -64.01, 2, 0)
  51. MovementLoopAddLocation(NPC, 81.42, 6.87, -63.94, 2, 0)
  52. MovementLoopAddLocation(NPC, 67.02, 6.93, -57.84, 2, 0)
  53. end