출처) https://www.reddit.com/r/wow/comments/57t3xg/how_to_sell_grey_items_with_one_macro/

채팅창 시스템 메세지가 있는 매크로

/run c=C_Container for b=0,4 do for s=1,c.GetContainerNumSlots(b) do local n=c.GetContainerItemLink(b,s) if n and string.find(n,"ff9d9d9d") then print(n,"판매") c.UseContainerItem(b,s) end end end 



별도 시스템 메세지 없이 판매만 하는 매크로

/run c=C_Container for b=0,4 do for s=1,c.GetContainerNumSlots(b) do local n=c.GetContainerItemLink(b,s) if n and string.find(n,"ff9d9d9d") then c.UseContainerItem(b,s) end end end