Sell All Those Junk Grey Items Macro

Posted June 22nd, 2008 by admin

This macro is super useful for those who farm or just get a bunch of junk items from warcraft mobs. As we all know just vendoring some of these items can fetch up to 2 to 3 gold for each item, after a day of farming that could be an easy additional 50g. This macro will sell all the junk items in your bags, and tell you what its sold.

/script for bag = 0, 4 do for slot = 1, GetContainerNumSlots(bag) 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

6 Responses to “Sell All Those Junk Grey Items Macro”

  1. Drotara Says:

    Wow, that really is an awesome script. I might be adding that one to my list. Nice find!

  2. sjn Says:

    It’s a ok macro but what would I need to change so it doesn’t do the message thing? It gets really annoying when your doing a few bags of items and your trying to pay attention to chat.

  3. Joe Says:

    I dont get it, i see this one everywhere, but the macro never works like it says, am i doing something wrong?

  4. Balmung6 Says:

    I can’t get it to work – do i need to delete some of the spaces you put in the macro or something? Do i have to have my bags open or selected?

  5. Peter Says:

    You should try reading through the script of the macro. It’s pretty obvious that the line, “DEFAULT_CHAT_FRAME:AddMessage(”Selling “..name)” is what adds the message. I’m sure removing that line would eliminate the message. However, the “then” before the message might have to be eliminated too, along with one of the end because you only have 2 actions now, but you should test that yourself to see what’s necessary.

  6. rhones Says:

    this macro doesn’t work

Leave a Reply