Advertisement
Acps87

RareFarmMacros

Dec 4th, 2019
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.04 KB | None | 0 0
  1. Aeonaxx, Time-Lost Proto-Drake and Poseidus (Blood Seeker and Vyragosa too) Target Macro
  2. ------------------------------------------
  3. /tar Time-lost
  4. /tar Aeonaxx
  5. /tar Blood Seeker
  6. /tar Poseidus
  7. /tar Vyragosa
  8. /run local N = UnitName("Target");if N and (N=="Aeonaxx" or string.find(N,"Time-Lost") or N=="Poseidus") then PlaySound(13363);print(date(),N,"Found");SetRaidTarget("target",8);end
  9.  
  10.  
  11. Aeonaxx, Time-Lost Proto-Drake and Poseidus (Blood Seeker and Vyragosa too) Target Macro, focus target and without Sound
  12. ------------------------------------------
  13. /tar Time-lost
  14. /tar Aeonaxx
  15. /tar Blood Seeker
  16. /tar Poseidus
  17. /tar Vyragosa
  18. /focus
  19. /run local N = UnitName("Target");if N and (N=="Aeonaxx" or string.find(N,"Time-Lost") or N=="Poseidus") then print(date(),N,"Found");SetRaidTarget("target",8);end
  20.  
  21.  
  22. Edge of Reality (Voidtalon of the Dark Star) with screenshot and sound. Click before searching.
  23. ------------------------------------------
  24. /run local x GameTooltip:HookScript("OnSizeChanged", function() if GameTooltipTextLeft1:GetText() == "Edge of Reality" then if not x then PlaySound(13363) PlaySound(63971) PlaySound(11773) Screenshot() x=true end end end)
  25.  
  26.  
  27. Edge of Reality (Voidtalon of the Dark Star) without screenshot but sound. Click before searching.
  28. ------------------------------------------
  29. /run local x GameTooltip:HookScript("OnSizeChanged", function() if GameTooltipTextLeft1:GetText() == "Edge of Reality" then PlaySound(13363) PlaySound(63971) PlaySound(11773) end end)
  30.  
  31.  
  32. Mysterious Camel Figurine, Enables friendly nameplates and sets max distance you can see the nameplate at.
  33. If you use ElvUI go to Nameplates > General Options > Load Distance and set it to 100
  34. /run SetCVar("nameplateShowFriendlyNPCs",1)
  35. /run SetCVar("nameplateShowFriends",1)
  36. /run SetCVar("nameplateMaxDistance",100)
  37.  
  38. Optional, makes the nameplates larger
  39. /run SetCVar("nameplateHorizontalScale",1.4)
  40. /run SetCVar("nameplateVerticalScale",2.7)
  41.  
  42. To disable
  43. /run SetCVar("nameplateShowFriendlyNPCs",0)
  44. /run SetCVar("nameplateShowFriends",0)
  45. /run SetCVar("nameplateMaxDistance",60)
  46.  
  47. /run SetCVar("nameplateHorizontalScale",1)
  48. /run SetCVar("nameplateVerticalScale",1)
  49.  
  50. Draenor Rares Target Macro with sound.
  51. ------------------------------------------
  52. /tar Gorok
  53. /tar Luk’hok
  54. /tar Nakk the Thunderer
  55. /tar Pathrunner
  56. /tar Poundfist
  57. /tar Silthide
  58. /run local N = UnitName("Target");if N then PlaySound(13363);print(date(),N,"Found");SetRaidTarget("target",8);end
  59.  
  60.  
  61. Draenor Rares Target Macro with focus and without sound.
  62. ------------------------------------------
  63. /tar Gorok
  64. /tar Luk’hok
  65. /tar Nakk the Thunderer
  66. /tar Pathrunner
  67. /tar Poundfist
  68. /tar Silthide
  69. /focus
  70. /run local N = UnitName("Target");if N then print(date(),N,"Found");SetRaidTarget("target",8);end
  71.  
  72.  
  73. Ephemeral Crystal (Long-Forgotten Hippogryph) Mouseover Macro. Click before searching.
  74. ------------------------------------------
  75. /run local x GameTooltip:HookScript("OnSizeChanged", function() if GameTooltipTextLeft1:GetText() == "Ephemeral Crystal" then PlaySound(63971) end end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement