Download
(2Kb)
Download
Updated: 03-01-10 10:58 AM
Pictures
File Info
Updated:03-01-10 10:58 AM
Created:05-28-09 05:40 PM
Downloads:7,256
Favorites:101
MD5:

Dolemite  Popular! (More than 5000 hits)

Version: 30300.1-Beta
by: p3lim [More]

This addon is discontinued.
Functionality added to Molinari.

Description:
Dolemite is an addon designed to make [Disenchant] a bit easier.

While you might do it the old fashion way, by clicking the spell first, then selecting the item(s) to Disenchant.
Why do it the hard way?

Dolemite lets you Disenchant without clicking the spell first!
Simply hold the <Alt> key down and click on the item you want to "nuke". Voilá!

It also has a pretty animation, see the image to the right -->


Known Issues:
There are no real API to figure out wether the item is disenchantable or not, so the usage is not fool-proof.
Moving while trying to disenchant will cause the item to equip instead.

Full changelog can be found on GitHub:
http://github.com/p3lim/Dolemite/commits/master/
Post A Reply Comment Options
Unread 05-28-09, 09:02 PM  
Myster
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 167
Uploads: 11
Bugfix

Typo is preventing this mods operation.


Error in line #41

if(lid and IsAltKeyDown() and not InCombatLockdown()) then


lid is the typo change to id for those who do not know what I am referring to.


Great mod thanks for sharing this with us, I was planning on doing something like this myself. Thanks for saving me the time ;-)
Report comment to moderator  
Reply With Quote
Unread 05-28-09, 11:52 PM  
Purity
A Deviate Faerie Dragon

Forum posts: 16
File comments: 170
Uploads: 0
I have a small suggestion. Have the function disabled when the auction house window is open. Many auction mods use the alt right click to auto-auction items. Also makes me think about the mailbox, too. Perhaps these could be toggled on/off.

Other than that, great idea for DE when in instances trying to make quick bag space.
__________________
Report comment to moderator  
Reply With Quote
Unread 05-29-09, 07:29 AM  
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1710
File comments: 1222
Uploads: 43
Originally posted by Purity
I have a small suggestion. Have the function disabled when the auction house window is open. Many auction mods use the alt right click to auto-auction items. Also makes me think about the mailbox, too. Perhaps these could be toggled on/off.

Other than that, great idea for DE when in instances trying to make quick bag space.
Ill get that done tonight
Report comment to moderator  
Reply With Quote
Unread 05-30-09, 03:32 AM  
Taroven
A Cyclonian
AddOn Author - Click to view AddOns

Forum posts: 49
File comments: 837
Uploads: 11
Very neat and simple little addon, p3lim. However, I've had to hack it a little to get it working for me:

1) Dolemite prevents Combuctor (and probably most other custom bags) from showing in combat, due to the hookSecureFunc at the bottom of the file.

2) Works with non-Enchanting characters. Detecting the character's tradeskills when they're available to the API would be a good idea, in case similar addons are being used for milling and prospecting.

3) Alt-binding interferes with selecting equipment via the character frame's equipment flyouts. Shift and control are taken for most uses, so I now use ctrl+alt.

Thanks much for writing this.
Report comment to moderator  
Reply With Quote
Unread 05-30-09, 08:33 AM  
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1710
File comments: 1222
Uploads: 43
Originally posted by Taroven
1) Dolemite prevents Combuctor (and probably most other custom bags) from showing in combat, due to the hookSecureFunc at the bottom of the file.
Did not know that.
The hooksecurefunc at the bottom is to fix a blizzard bug, I fix it so it doesn't interfere with add-ons like Combuctor.


Originally posted by Taroven
2) Works with non-Enchanting characters. Detecting the character's tradeskills when they're available to the API would be a good idea, in case similar addons are being used for milling and prospecting.
Adding this to both Dolemite and Molinari, thanks for reporting.


Originally posted by Taroven
3) Alt-binding interferes with selecting equipment via the character frame's equipment flyouts. Shift and control are taken for most uses, so I now use ctrl+alt.
Using just alt is a design choice, it will not be changed.
Im adding modifiers to disable its functionalities while using Trade-, Mail- and Auction frames to the next version.
Report comment to moderator  
Reply With Quote
Unread 05-30-09, 01:40 PM  
Taroven
A Cyclonian
AddOn Author - Click to view AddOns

Forum posts: 49
File comments: 837
Uploads: 11
Originally posted by p3lim
Using just alt is a design choice, it will not be changed.
Im adding modifiers to disable its functionalities while using Trade-, Mail- and Auction frames to the next version.
No worries there. I only changed it on my copy due to equipment selection via the character frame. Adding PaperDollFrameItemFlyout to the list would be a perfect solution.
Report comment to moderator  
Reply With Quote
Unread 05-31-09, 06:02 PM  
Sparanoid
A Defias Bandit

Forum posts: 3
File comments: 57
Uploads: 0
i enabled this addon, somtimes when i entered combat i cannot open my bag until i leave combat. i'm using Bagnon
Last edited by Sparanoid : 05-31-09 at 06:08 PM.
Report comment to moderator  
Reply With Quote
Unread 06-01-09, 02:18 AM  
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1710
File comments: 1222
Uploads: 43
Originally posted by Sparanoid
i enabled this addon, somtimes when i entered combat i cannot open my bag until i leave combat. i'm using Bagnon
Its gonna be fixed in the next version
Report comment to moderator  
Reply With Quote
Unread 06-01-09, 01:47 PM  
Æxò
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 73
Uploads: 1
I couldn't use your addon until I changed, at line 70 :

Code:
if(self:IsShown() and string.match(key, 'ALT$')) then
to :

Code:
if(self:IsShown() and string.match(key, 'LALT')) then
Same for Molinari. Hope that helps
Report comment to moderator  
Reply With Quote
Unread 06-01-09, 03:06 PM  
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1710
File comments: 1222
Uploads: 43
Originally posted by Æxò
I couldn't use your addon until I changed, at line 70 :

Code:
if(self:IsShown() and string.match(key, 'ALT$')) then
to :

Code:
if(self:IsShown() and string.match(key, 'LALT')) then
Same for Molinari. Hope that helps
What OS you running?
Report comment to moderator  
Reply With Quote
Unread 06-01-09, 03:24 PM  
Æxò
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 73
Uploads: 1
Originally posted by p3lim
What OS you running?
Mac OS X
Report comment to moderator  
Reply With Quote
Unread 06-01-09, 03:43 PM  
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1710
File comments: 1222
Uploads: 43
Originally posted by Æxò
Mac OS X
Ah ok, ill fix it for you
Report comment to moderator  
Reply With Quote
Unread 06-01-09, 03:44 PM  
Æxò
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 73
Uploads: 1
Originally posted by p3lim
Ah ok, ill fix it for you
Thank you very much for your quick and efficient support :P
Report comment to moderator  
Reply With Quote
Unread 06-03-09, 01:56 PM  
peewee_sweden
A Kobold Labourer

Forum posts: 1
File comments: 79
Uploads: 0
Is there a technical reason this is divided into Molinari and Dolemite?
Report comment to moderator  
Reply With Quote
Unread 06-03-09, 03:41 PM  
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1710
File comments: 1222
Uploads: 43
Originally posted by peewee_sweden
Is there a technical reason this is divided into Molinari and Dolemite?
With milling and prospecting you have a line on the top of a tooltip that says "Millable" or "Prospectable", which makes it very easy to detect.

Disenchant-able items does not have this, so I need to go deeper.

I didnt want to mess up Molinari to give that ability, so I made a seperate add-on.

Blame blizz I'd say!
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: