Sell-O-Matic
The purpose of this mod is to help us sell the kind of items that we get most frequently: Junk!
How to use it
- Open the merchant window.
- Check if the top right coin style button is greyed or not.
- If the button isn't greyed it means you have items to sell. If you hover your mouse above the button it will display the total profit you will earn.
- Hit the button and all junk items will be sold.
- Profit!
SellOMatic vs SellOMatic2
SellOMatic has been rewritten to give the old SellOMatic lovers the essence of the addon back, to sell those pesky junk items without complications: No options, no lists, no problems. Also it has been rewritten to be a light and fast addon.
SellOMatic2 is the evolution of the addon, giving the user the ability to choose which modules/functions to enable to configure the addon as the user needs. It includes list/item/class/destroy functions to suit a variety of needs. More info here
Localization
If you want to help with the localization of the addon feel free to use the new localization tool
delete grey items from inventory from a command line ex: /som clean
While dungeon clearing for a friends alts I like to pick up the cloth for first aid which means I'm looting everything, I would love to be able to simply delete the grey items from inventory and keep on going. I added this ability in the past, but every update means more modifying your code and I think im not the only one that benefit from this change.
Take a look at SellJunk ( http://wow.curse.com/downloads/wow-addons/details/sell-junk.aspx )
a delete junk system like that would be nice
- /som delete
- /som delete x <--x being quantity of random junk to del
I also like the request someone has to that author for a "/som add" for item under mouse pointer, without bringing up config dialog ;)
I really like this addon to sell my grey crap.
Another anoying "sell-task" is: I have to sell all soul-bind eqip, which is (plate,mail,leather).
From quests and from dungeons i often get these items, but - as a priest - I have to sell them.
Is there any possibility, to automatical sell all soulbind equip with a given armor-type?
the method it uses is that before selling a soulbound item, it checks a table of Proficiencies (current list in that addon is outdated due to addition to things like axes to rogues) and only sells the item if that list has it as something the class cannot use.
makes use of the ace3 librarys - LibBabble-Class, and LibBabble-Inventory to provide part of this feature.
keep in mind that if this feature is added and blizzard allows a class to use some item type they couldn't previously, the table will need to be updated, and anyone who doesn't update will sell things based on the old proficiencies
Thank You
Denwatcher's Shoulders
Gallant's Wristguards
Mugger's Belt
Kromcrush's Chestplate
Are the ones that spring to mind from farming Dire Maul :)
complete Korean.
"Sell-O-Matic has sold xx items for xxg xxs xxc."
It would save me from having to edit the lua files every time you update your addon. :-) *laugh* I just comment out the 4 lines right before the call to ShowProfit. :)
Also, on another note, when I interact w/ a vendor, SOM automatically sells my wool cloth when it is not on the sell list (I tried doing a /som deltext but it says item isn't on the list), why is it trying to sell my wool cloth when it's not on the list?
Now I have been looking everywhere for a replacement.
I thought I found it here, but unfortunately it doesn't work the way I would expect.
I want an exclude list to NOT sell.
The problem with this app is that you have to enter thousands of items that you WANT to sell. I like the idea as below of adding "raw" etc, it's a nice thing, but what I really need is an exclude list.
Maybe the author can add an exclude list, so if you aren't using lists and want to just sell all trash, EXCEPT a few items.
This would really help.
Does anyone know of a plugin that already does this?
Thanks. I will keep trying this one out, but I can't see myself adding every trash item in the game.
In all my tests, it never seemed to work unless I put items in the sell list if the box is checked to use lists, but I can't tell it to save 3 items, and sell everything else. I would have to load up the sell list with thousands of trash entries.
Unless it was not working correctly, or I did something wrong, this is how it was acting.
Is there a wild card or something to put in the sell list?
Or will it just not work like this?
Maybe there needs to be 2 check boxes to enable the save and sell lists independently.
Please let me know if I am doing something wrong, or if this is how it is supposed to work.
ty
It wasnt removing the brackets for checking in the list, while it was removing brackets for putting it in the list. I changed text to itemName in the string search algorithm.
function SellOMatic:SOMListDelLink(info,text)
if text ~= nil then
name = GetItemInfo(text);
if name ~= nil then
itemName = name;
else
itemName = text;
end;
local num = 0;
for i,v in ipairs(self.db.profile.sellList) do
if itemName and string.find(self.db.profile.sellList[i], itemName) or itemName == v then
num = num + 1;
table.remove(self.db.profile.sellList, i);
SellOMatic:Print(v.." "..L["removed from sell list."]);
end;
end;
if num == 0 then
SellOMatic:Print(text.." "..L["not found on sell list."]);
end;
end;
end;