Is there a setting I can change somewhere to make it DE blues? I DE about 100+ Stormforged Shoulders per day which are a blue quality item and would be great if I could make it automated
Line 114 look for: Code: targetItems[a].Quality != WoWItemQuality.Uncommon Change Uncommon to Rare so it reads: Code: targetItems[a].Quality != WoWItemQuality.Rare That should DE all rare items that are not soulbound. So be aware that it also DE's any other BoE items in your inventory
Does it work with Auto-Equip? If i lvl a new Toon, does Auto-Equip with use and if not your Plugin will disenchant it?
I tried this myself as I'm constantly DEing blues from shuffle (plus those shoulders), and it works, but is there a way to add a line so it doesn't do either greens or blues, but instead both? Will love you forever and ever. Thanks
Probably something along the lines to change Code: targetItems[a].Quality != WoWItemQuality.Uncommon to Code: targetItems[a].Quality == WoWItemQuality.Uncommon || targetItems[a].Quality == WoWItemQuality.Rare No guarantees though, can't test it atm.
Nope. It doesn't even do anything >.< If I have any other items on me than the green/blues (like dust) it'll try to DE those, but it won't touch the green/blues.
I probably shouldn't have changed the ! to = Try it with Code: targetItems[a].Quality != WoWItemQuality.Uncommon || targetItems[a].Quality != WoWItemQuality.Rare I don't have a game here atm, so I can't run it
Still not doing anything. I'm more than happy to keep trying but don't worry about it if you're busy. No rush. Whenever you can. I really appreciate the fast responses .
Home again, and had a look at the whole code and you know what, that helps alot, hehe. Around line 114 change the similar code to this: Code: targetItems[a].Quality == WoWItemQuality.Poor || targetItems[a].Quality == WoWItemQuality.Common || targetItems[a].Quality == WoWItemQuality.Epic This leaves all Poor, Common and Epic items alone. De's all Uncommon and Rare items that are not Soul or Accountbound and not on the ignore list. So for clarity the whole sentence should read (I changed the looks a bit): Code: else if (targetItems[a].IsSoulbound || targetItems[a].IsAccountBound || ignoreItems.Contains(targetItems[a].Entry) || targetItems[a].Quality == WoWItemQuality.Poor || targetItems[a].Quality == WoWItemQuality.Common || targetItems[a].Quality == WoWItemQuality.Epic)
Oh dear god I want to make sweet love to you! Ty so much! Works like a charm I wish I could spam you with rep lol
Works like a charm! Awesome code. Can't seem to find a working thread here for Prospecting/ making greens then sending greens to an alt, retrieve from mailbox and disenchant all greens. Any help? THanks!
http://www.thebuddyforum.com/honorb...s/professions/40351-pb-craft-jc-stuff-de.html look in the professions thread you will find anything you need there the profession buddy does so much more than any plugin.
http://www.thebuddyforum.com/honorb...f-liquids-disenchant-plugin-5.html#post395903 Follow the steps here (it's on the former page) and read the description to what it does. That should solve the disenchant rares part. I'm @ work (am on laptop in my truck in Neuss (Germany) with a prepaid mobile internet stick), so can't do much more than reference atm.
Nice plugin. What if I wanted it to DE all soulbound items, e.g. quest rewards while in the process of leveling through one of Kick's profiles? Is there some code modification I can do to tell it to DE ALL Uncommon items? If this was possible, do you know if it would hinder AutoEquip's plugin (what I use to have the bot swap in better pieces as they are found/quest rewarded). Please forgive me if I left you confused with this inquiry. If you follow my reasoning, let me know if something can be done. Thanks in advance!!
Awsome plugin, really usefull for chars with enchanting I got only one question though, is it possible to make it 'slower' than AutoEquip? Atm its way faster, and destroys any possible item upgrades, before AutoEquip gets a chance to equip them. Is it an easy fix to make it Pulse() every 5minutes for example?
Is there any way to add certain items (Cataclysm random enchant Rings and Necklaces from JCing) so I stop getting the messages: [LiquidDisenchant]: Hessonite Band of the Seer (Entry:52308). [LiquidDisenchant]: Jasper Ring of the Whale (Entry:52306). [LiquidDisenchant]: Hessonite Band of the Bear (Entry:52308). [LiquidDisenchant]: Hessonite Band of the Wavecrest (Entry:52308). [LiquidDisenchant]: Hessonite Band of the Sorcerer (Entry:52308). [LiquidDisenchant]: Hessonite Band of the Beast (Entry:52308). [LiquidDisenchant]: Hessonite Band of the Invoker (Entry:52308). [LiquidDisenchant]: Hessonite Band of the Stormblast (Entry:52308). [LiquidDisenchant]: Hessonite Band of the Seer (Entry:52308). [LiquidDisenchant]: Hessonite Band of the Wavecrest (Entry:52308). [LiquidDisenchant]: Hessonite Band of the Galeburst (Entry:52308). [LiquidDisenchant]: Jasper Ring of the Whale (Entry:52306). And it does not DE them? Thanks
Nice. I got a lvl 85 that im going to put enchanting and jc on. This should help out. My plan is to put it on instancebuddy and have it farm lower level dungeons for enchanting mats.