Posted on: 06-06-2013 - Updated on: 05-30-2013 - viewed 5818 times
Description:
Each macro below prints how many of each major or minor glyph recipes you know.
Major: /run local g,c,l=GameTooltip,0 for i=1,GetNumTradeSkills() do g:SetOwner(this,"ANCHOR_NONE") l=GetTradeSkillItemLink(i) if l then g:SetHyperlink(l) if GameTooltipTextLeft2:GetText()=="Major Glyph" then c=c+1 end g:Hide() end end print(c.." major glyphs") Minor: /run local g,c,l=GameTooltip,0 for i=1,GetNumTradeSkills() do g:SetOwner(this,"ANCHOR_NONE") l=GetTradeSkillItemLink(i) if l then g:SetHyperlink(l) if GameTooltipTextLeft2:GetText()=="Minor Glyph" then c=c+1 end g:Hide() end end print(c.." minor glyphs")