How to set this to delete damn "Turtle Shell" and some other stuff ? Its perfect, I just need to delete this, nothing else !
Open TidyBags.cs with text editor. Scroll down to the part that says (somewhere around line 528ish) Code: private HashSet<uint> _destroyItems = new HashSet<uint>() { Below you see item ID's (as found on Wowhead). Just add your own items you want destroyed in the same way. Turtle Shell example: Wowhead link = Turtle Shell - Item - World of Warcraft Thus itemID is 81201 Add to list Code: 81201, // Turtle Shell Put this somewhere in between the rest, because at the end you have to change a bit more (and as you said you don't get it, better not mess with that).
I don't know if anyone needs this I just made it and I am going to try it out later but I made this http://www.wowhead.com/item=72163 for leatherworkers only who want to turn there 50 exotic leathers into magnificent hides. I made mine after the use ten column, since there was no make fifty im making one and it should be able to do it Code: private HashSet <uint> _itemUseOnFifty = new HashSet<uint>() { 72120, // Exotic Leather (Leatherworker only!) }; EDIT: Nvm just realized it wont work because you actually have to craft the Magnificent Hide it's not an item that combines.
hello, i made below changings on plugin but it didnt worked for sha-touched leather? any idea what to do next? private HashSet<uint> _itemUseOnFive = new HashSet<uint>() { 33567, // Borean Leather Scraps 72162 // Sha-Touched Leather };
I added Crate of Tol'vir Archaeology Fragments and its not opening them any help would be awesome 87539, // Crate of Tol'vir Archaeology Fragments
I added a few things and it worked pretty well, but now i tried to add several VII Scrolls and Honeymint tea + Sparkling Frostcap and it DOESNT WORK :/ .... i found out that honeymint tea was in the protected item list so i deleted it, but the others arent. Help? EDIT: okay sorry.. xD i added Scroll of Agility VII 2 timesĀ“... guess that was why it didnt work
Sorry if this has been answered already but... Will this disenchant soulbound greens and mail the mats?
This is only about opening containers and combining pieces together. Disenchanting is to be found somewhere else
so with this plugin enabled it made my character sell my Jard's Peculiar Energy Source that i had been saving
As far as I know, this plugin doesn't sell anything. It just opens containers and combines items to create other items, such as motes, spirits, and other various items. Something else must have sold your items.
No I can confirm it sells a bunch of stuff. I used it and it sold a ton of things (thunder stones used to summon bosses w/e it's called, fishing poles, mining picks, etc).
Liquidator, please add: 72162 // Sha-Touched Leather to the list of items to combine on 5. I added it at line 463.