Thread Tools Display Modes
09-19-14, 04:22 PM   #1
Spectro
A Flamescale Wyrmkin
 
Spectro's Avatar
Join Date: Dec 2006
Posts: 142
Sell gray items

I'm looking for an addon that will let me sell all my gray items at once.
__________________
multiplayermaniacs.com
  Reply With Quote
09-19-14, 04:24 PM   #2
Duugu
Premium Member
 
Duugu's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2006
Posts: 851
http://www.wowinterface.com/downloads/search.php ... search term "sell".
  Reply With Quote
09-19-14, 04:56 PM   #3
Nimhfree
A Frostmaul Preserver
AddOn Author - Click to view addons
Join Date: Aug 2006
Posts: 267
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")
  Reply With Quote
09-19-14, 05:44 PM   #4
Duugu
Premium Member
 
Duugu's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2006
Posts: 851
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.
  Reply With Quote
09-19-14, 05:49 PM   #5
def9
A Cobalt Mageweaver
 
def9's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2008
Posts: 219
Vendor Master has been my personal favorite for a long time now.
__________________
Epiria, level 100 Ret/Holy Paladin
Simkin level 100 Combat Rogue
Feldeemus, level 100 Arcane Mage
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Sell gray items

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off