WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   AddOn Search/Requests (https://www.wowinterface.com/forums/forumdisplay.php?f=6)
-   -   Sell gray items (https://www.wowinterface.com/forums/showthread.php?t=49941)

Spectro 09-19-14 04:22 PM

Sell gray items
 
I'm looking for an addon that will let me sell all my gray items at once.

Duugu 09-19-14 04:24 PM

http://www.wowinterface.com/downloads/search.php ... search term "sell".

Nimhfree 09-19-14 04:56 PM

I use:

Code:

--        Create a simple frame that allows grey quality items to be sold automatically
local sellFrame = CreateFrame("Frame")
sellFrame:SetScript("OnEvent", function()
                for bag = 0, 4 do
                        for slot = 1, GetContainerNumSlots(bag) do
                                local _, _, locked, _, _, _, link = GetContainerItemInfo(bag, slot)        -- will return -1 for quality a lot
                                if nil ~= link then
                                        local _, _, realQuality, _, _, _, _, _, _, _, vendorPrice = GetItemInfo(link)
                                        if 0 == realQuality and 0 ~= vendorPrice and not locked then
                                                UseContainerItem(bag, slot)
                                        end
                                end
                        end
                end
        end)
sellFrame:RegisterEvent("MERCHANT_SHOW")


Duugu 09-19-14 05:44 PM

OT: funny enough that 'casualized' almost every aspect of the game as much as possible but didn't replaced the useless grey items by simple gold drops. :D

def9 09-19-14 05:49 PM

Vendor Master has been my personal favorite for a long time now.


All times are GMT -6. The time now is 02:54 AM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2004 - 2022 MMOUI