In World of Warcraft (WoW), bag space is a precious resource, and junk items can clutter up your inventory quickly. Luckily, there's a simple way to deal with this—using a macro to sell junk items instantly at a vendor. A "junk" item, also known as a "gray" item, is typically of no use to players beyond selling for a bit of gold.
Here’s a quick macro you can use to automatically sell all gray items when you interact with a vendor:
This macro is incredibly helpful for players who farm or accumulate lots of junk items from Warcraft mobs. Selling these items to vendors can net you 2 to 3 gold per item, and after a full day of farming, that could easily add up to an extra 50 gold. With this macro, all junk items in your bags will be sold automatically, and you'll even get a notification of what’s been sold.
[[quote]]/run for bag=0,4,1 do for slot=1,GetContainerNumSlots(bag),1 do local name=GetContainerItemLink(bag,slot) if name and string.find(name,"ff9d9d9d") then DEFAULT_CHAT_FRAME:AddMessage("- Selling "..name) UseContainerItem(bag,slot) end end end[[/quote]]
This simple macro checks your bags for gray items and sells them instantly when you're at a vendor. You can create a new macro by typing /macro in the chat box, pressing “New,” and then pasting the code above into the box. Add it to your action bar, and click it whenever you visit a vendor to clear out your junk items.
Post a Comment (0)