Thread Tools Display Modes
01-25-14, 01:52 PM   #1
kaisoul
A Fallenroot Satyr
 
kaisoul's Avatar
Join Date: Jul 2009
Posts: 20
Request: loot filter / bag management

i am a big fan of Magnet Continued http://www.curse.com/addons/wow/magnet-continued but it looks to be out dated and i really need an addon to filter the loot & destroy trash under a certin value from my bags all in one shot. Like the farm mode of the posted addon.

So if any one can help list some addons for me to try & find a replacement please & thank you.
__________________
  Reply With Quote
01-25-14, 03:42 PM   #2
Nimhfree
A Frostmaul Preserver
AddOn Author - Click to view addons
Join Date: Aug 2006
Posts: 267
I have not looked at that addon, but I automatically sell grey loot to vendors when I meet them with:

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")
You might be able to adapt it to your needs.
  Reply With Quote
01-25-14, 04:38 PM   #3
def9
A Cobalt Mageweaver
 
def9's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2008
Posts: 219
Trashcan or Easyloot will do what your're looking for if I remember right.
__________________
Epiria, level 100 Ret/Holy Paladin
Simkin level 100 Combat Rogue
Feldeemus, level 100 Arcane Mage
  Reply With Quote
01-25-14, 05:22 PM   #4
kaisoul
A Fallenroot Satyr
 
kaisoul's Avatar
Join Date: Jul 2009
Posts: 20
easy loot looks like it might do the trick will have to test it out after im done with dinner ^_^
__________________
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Request: loot filter / bag management


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