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![]()
targetItems[a].Quality != WoWItemQuality.Uncommon
targetItems[a].Quality != WoWItemQuality.Rare
Line 114 look for:Change Uncommon to Rare so it reads:Code:targetItems[a].Quality != WoWItemQuality.Uncommon
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![]()
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![]()
targetItems[a].Quality != WoWItemQuality.Uncommon
targetItems[a].Quality == WoWItemQuality.Uncommon || targetItems[a].Quality == WoWItemQuality.Rare
Probably something along the lines to changetoCode:targetItems[a].Quality != WoWItemQuality.Uncommon
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.
targetItems[a].Quality != WoWItemQuality.Uncommon || targetItems[a].Quality != WoWItemQuality.Rare
I probably shouldn't have changed the ! to =
Try it withCode: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.
targetItems[a].Quality == WoWItemQuality.Poor || targetItems[a].Quality == WoWItemQuality.Common || targetItems[a].Quality == WoWItemQuality.Epic
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)
You can edit the plugin to also disenchant rare items?
I don't get it. How do i make it disenchant blue BoE stuff?
Kind regards Perkaan.
http://www.thebuddyforum.com/honorb...f-liquids-disenchant-plugin-5.html#post395903Bump.