Download
(282Kb)
Download
Updated: 09-11-19 02:29 AM
Pictures
File Info
Compatibility:
Classic (1.13.2)
Updated:09-11-19 02:29 AM
Created:unknown
Downloads:8,502
Favorites:61
MD5:

DemonDaemon  Popular! (More than 5000 hits)

Version: 1.09-classic
by: Norque [More]

DemonDaemon
Classic problems require vanilla solutions

DemonDaemon aims to make a warlocks lot in life that little bit easier, mostly by freeing up upto 30 buttons :P

Like ShardAce (which was inspired by the efforts of ShardTracker and it's numerous resurrections) DD takes your Demonology spells and crams them into little buttons up by your minimap.

1.09-classic - Timers are working again now
1.08-classic - Stirred from it's endless slumber for WoW Classic
- Basic functionality seems to be working ok, but I'm only up to level 22
1.08 - Fixed bug reported by Veyska
- Added ability to arrange the main buttons in straight lines
1.07 - Spells on cooldown grey out
- Stone buttons grey out when said stone isn't in your bags
1.06 - Summon menu buttons now hide on left click
- All buttons will show a tooltip when moused over
1.05 - Added new Healthstone item IDs
- Added options menu. Currently just positioning options.
1.04 - Added Soulshard counting
- Changes for Spellstones and Firestones in build 8962
1.03 - Added CallbackHandler-1.0 library. Learnt again why it's important to test mods by themselves
1.02 - Added new spells
- Should only display buttons for spells you actually know
- buttons update as you learn and forget spells
1.01 - Small update to deal with build 8820 changes
1.00 - Initial release
Optional Files (0)


Post A Reply Comment Options
Unread 09-21-19, 03:18 AM  
Norque
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 47
Uploads: 5
Re: moving

Originally Posted by Jakke
Hi,

How do you move this window from the add on using Elvui?

Best regards
All the options should be under the Addons tab of Interface Options.
More specifically, you'll probably want to change the AnchorFrame to something else - UIParent will anchor the buttons relative to the middle of the screen, from there you can fiddle with the settings and see what happens
Report comment to moderator  
Reply With Quote
Unread 09-19-19, 10:29 AM  
Jakke
Guest

Join Date: Not Yet
Forum posts: 0
File comments: 0
Uploads: 0
moving

Hi,

How do you move this window from the add on using Elvui?

Best regards
Last edited by : 09-19-19 at 03:11 PM.
Report comment to moderator  
Edit/Delete Message Reply With Quote
Unread 09-11-19, 02:31 AM  
Norque
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 47
Uploads: 5
Re: Retail Classic Please?

Originally Posted by Arxon_Havenloft
Is there any chance of seeing a revival of this addon for retail Classic WoW?
Way ahead of you buddy
Report comment to moderator  
Reply With Quote
Unread 09-10-19, 06:31 PM  
Arxon_Havenloft
A Defias Bandit

Forum posts: 2
File comments: 12
Uploads: 0
Retail Classic Please?

Is there any chance of seeing a revival of this addon for retail Classic WoW?
__________________
Some things money can't buy.. but you'll still get those things anyway if you have enough money.
Report comment to moderator  
Reply With Quote
Unread 02-03-09, 12:18 AM  
Zlogg
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Would like to set this up but I cannot access the menu. What is the comand line? /sa /shardace /dd /demondaemon none of these work
Report comment to moderator  
Reply With Quote
Unread 01-22-09, 08:25 AM  
Tinuviel
A Defias Bandit
 
Tinuviel's Avatar

Forum posts: 3
File comments: 210
Uploads: 0
Folks, a person named Valery has resurrected ShardAce due to this addon not being continued by Norque. I'd suggest heading there and helping him with bug reports: http://www.wowinterface.com/download...dAceWoTLK.html
Report comment to moderator  
Reply With Quote
Unread 01-22-09, 02:21 AM  
Lurker37
A Kobold Labourer

Forum posts: 0
File comments: 9
Uploads: 0
Thanks for the code, Ravynne.

Now if I can only work out how to set didIClickIt = false after I use the flyout menu to cast a spell...

Does anyone know?
Report comment to moderator  
Reply With Quote
Unread 01-21-09, 10:16 AM  
Kyrgune
Premium Member
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 14
File comments: 66
Uploads: 2
Ravynne, thanks for the LUA change tips, makes this wonderful addon work again. The only thing I had to change in the addon was inside the game. Had to move down the Enslave Demon button because it was located higher than the others.

My thanks again,

Kyrgune
Last edited by Kyrgune : 01-21-09 at 10:17 AM.
Report comment to moderator  
Reply With Quote
Unread 01-21-09, 07:38 AM  
Nyarlathotep
A Kobold Labourer
 
Nyarlathotep's Avatar

Forum posts: 0
File comments: 10
Uploads: 0
Originally posted by ObscureScience
hope this gets updated soon!
Is not working for me at least in 3.0.8. Really hope this addon gets updates...
Report comment to moderator  
Reply With Quote
Unread 01-21-09, 06:11 AM  
ObscureScience
A Deviate Faerie Dragon

Forum posts: 10
File comments: 81
Uploads: 0
hope this gets updated soon!
Report comment to moderator  
Reply With Quote
Unread 01-20-09, 09:10 PM  
Ravynne
A Kobold Labourer

Forum posts: 0
File comments: 17
Uploads: 0
This hackjob below gets the addon sorta working. Now that I think of it, I have no idea what cleared the rows. Left clicks. Right clicks. What if I displayed and then just canceled. I think that was right click to display and another to cancel. But I forget.

Apparently, you can't call IsShown() the way this addon was doing it in the past.

Near line 1083 in DemonDaemon.lua, add a variable initialization didIClickIt. Set it to false. Replace the IsShown() check with a check on didIClickIt. In various locations, set this value to true or false.

Code:
  didIClickIt = false
  self.buttons[1]:RegisterForClicks("AnyUp")
  self.buttons[1]:SetAttribute("_onclick", [[
    if didIClickIt == true then
      didIClickIt = false
    --if MenuButtons[1]:IsShown() then     <--- this doesn't work anymore
      for i, button in ipairs(MenuButtons) do
        button:Hide()
      end
    else
      didIClickIt = true
      for i, button in ipairs(MenuButtons) do
        button:Show()
      end
    end

  ]])
Then at the bottom of the file, where it says button:Hide(), which is what I assume happens after you click the button you just saw, you need to clear that value so that the next time you click the minimap icon, it works better.


Code:
  for num, button in pairs(self.firstrow) do
    if button:GetAttribute("spell") then
      tinsert(self.firstmap, button)
    end
    button:Hide()
    didIClickIt = false
  end
etc.
Last edited by Ravynne : 01-20-09 at 09:11 PM.
Report comment to moderator  
Reply With Quote
Unread 01-20-09, 06:01 PM  
Tinuviel
A Defias Bandit
 
Tinuviel's Avatar

Forum posts: 3
File comments: 210
Uploads: 0
Dead.

Well, it's been several months, so I'm assuming this is dead.

But if there's any chance anyone is still looking at this mod, I'd love to have it working. The 3.0.8 patch broke the fly-out for spells, so now I have to find something else.
Report comment to moderator  
Reply With Quote
Unread 12-01-08, 10:17 AM  
Tinuviel
A Defias Bandit
 
Tinuviel's Avatar

Forum posts: 3
File comments: 210
Uploads: 0
Re: Not Dead

Originally posted by qwksilver
it's not so dead, someone has continued it somewhat and fixed a few of the bugs, just curious what happened to the author
What bugs does that version fix?

I'm at work, so I can't test it out. But thank you to whoever put that up there.
Report comment to moderator  
Reply With Quote
Unread 12-01-08, 03:14 AM  
Nyarlathotep
A Kobold Labourer
 
Nyarlathotep's Avatar

Forum posts: 0
File comments: 10
Uploads: 0
Re: Re: Not Dead

Stuff that Azmodanii posted would be great improvement for this addon.

Shardace and this has always been my favourite warlock addons, so I really hope this will be upgraded this asap.
Report comment to moderator  
Reply With Quote
Unread 11-30-08, 10:09 AM  
qwksilver
A Kobold Labourer

Forum posts: 0
File comments: 48
Uploads: 0
Re: Not Dead

for others it's linked under "Optional Files" shown above.

Originally posted by Anahka
Link to the new version?

nvm, found it.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: