Advertisement

Drathals HUD

  Download the Curse Client

Last Update: Jan. 10, 2007 (1 year ago)
Category: Combat
Tags: combat and hud
Project Manager: Caeryn
Current Version: Drathals HUD 1.4.20003
(for World of Warcraft 2.0.0)
Downloads Today: 60
Downloads Total: 217,811
Favorites: 1,032
Comments: 404
  • About Drathals HUD
  •  

Selective Player Buffs has been added. The intention of this feature is to complement, not replace, other player buff mods like CT_BuffMod. To reduce clutter, the Selective Player Buffs only shows short term player buffs. It does not show debuffs, item buffs, or auras without durations like Devotion and Trueshot.

If you feel that you would like these features, ask for them.

-- Caeryn Dryad


Markus: DHUD is DEAD - There will be no new Version of DHUD Because of People only change some Textures and do a Branch of DHUD without my Permisson. New Versions are only for my Guild from now on. Thanks to goes to all People that supported DHUD until now. Everyone who want's can take over this Project.


Links:

DHUD Suggestions: http://www.wowinterface.com/downloads/info4506-.html#cmnt19537...


Features:

  • Based off Drathal's original 0.9b5
  • Configuration via /dhud menu
  • Configuration via a UI accessable via Minimap Button
  • Health and Mana Bars that change colors as they diminish
  • Animation Health and Mana Bars
  • Shows level, name, class and status of the Target
  • Shows level, name, class and status of the Target's Target
  • Support for Telo's MobHealth / MobInfo2 / MobHealth2
  • 4 Transparency (Alpha) settings for : In Combat / Target Selected / No Target / Player is Regenning
  • Customizable display modes for Health, Mana, Target Textbox, Cast Time Textbox and Cast Delay Textbox
  • Configurable color settings for Health, Mana, Energy, Rage, tapped mobs and pets
  • Mini Pet bars!
  • Casting Bar with Casting Time (and Casting Delay!)
  • Options to enable or disable any of settings
  • Two optional layouts to seperate the bars by Mana/Health or by Target/Player
  • Offsets for any of the text frames
  • Status indicator icon to show if the mob is elite
  • Status indicator icon to show if you're resting
  • Status indicator icon to show if you're in combat
  • Option to reverse the casting bar
  • Support for up to 40 buffs and debuffs
  • Support for duration filtered player buffs
  • Support for raid icons


Todo:

  • Health/Mana of Target of Target
  • Show Raid Icons of Target (X, circle, skull, etc)
  • Show Class Icon
  • Show Target PvP Status
  • Show Target PvP Rank
  • Druidbar Support
  • Target casting bar (many people)
  • New Layout - flip player/mana
  • Profiles
  • Independant frame scaling


Known Issues:

  • ph_pm_eh_th_tm (Perniciu0s/Curse)
  • Downloads (16)
  •  
Advertisement

You need to login or register to post comments.

Benefits of Registration

  • Interact with hundreds of thousands of other gamers on an open social network.
  • Post your stories, news, images, videos, and other content to share.
  • Create a network with your fellow gamers or join an existing one.
  • Gain reputation for everything you do.
 
  • Dec. 29, 2007, 03:39PM (7 months, 3 weeks ago)

    I love your addon, but could you have a look why it kills popbar?

  • Oct. 3, 2007, 09:23AM (10 months, 3 weeks ago)

    So i managed to fix the 0 unknown problem when not targeting anything thanks btw to everyone who posted the solution.. but now ive noticed my dhud wont turn off the player frame and target frame. i myself have no idea how to work with .lua so i wouldnt even know where to begin to look to fix it but if someone out there wants to help me out i would appreciate it.

  • Sept. 30, 2007, 10:58PM (10 months, 3 weeks ago)

    DHUD:please report to caeryn this string: ph_pm_eh_th_tm

  • Sept. 29, 2007, 05:31PM (10 months, 3 weeks ago)
        • Dadadave wrote on WoW Forums ***

    If people prefer to apply the change on their own, open up DHUD.lua

    Go to line 625 and AFTER:


       if this.unit == "targettarget" and UnitExists("targettarget") == nil then
    
           font:SetText(" ");
    
           return;
    
       end
    


    ADD:

       if UnitExists(this.unit) ~= 1 then
    
           font:SetText(" ");
    
           return;
    
       end
    


    Credit for this really goes to whoever posted "MetaHUD Continued" on Curse... all I did was stick it into the appropriate place in DHUD.

    Thanks.

        • Dadadave wrote on WoW Forums ***

    This trick worked for me like charm...hope it works for you rest out there *cheers*

    "mike17032"

    Use either notepad or wordpad and use the "search" function to find the right spot if you dont have any editor program to do the line number searching (i think i had a problem with notepad that it didint go to right spot with move "to line" function).

  • Sept. 29, 2007, 09:39PM (10 months, 3 weeks ago)

    This fix worked;; One note about my version and changes it may have undergone, i had to do a search for the line to place it below (wasn't line 625, mine was about 658 or something) So if you cant find it, do a search and it should be there;;

    Don't replace where that stuff is though make a new line and copy/paste and place it under, and if your not copy and pasting the addition make sure spelling is correct!

  • Sept. 26, 2007, 11:17PM (10 months, 4 weeks ago)

    i just figured out how to get rid of the ph_pm_eh_tjh_tm string message...

    you have to disable "show pet" in the misc option window seems like there were some changes with patch 2.2.0 my x-perl also had some problems with the pet options after the patch

  • Sept. 27, 2007, 04:12AM (10 months, 4 weeks ago)

    or.. u can add this to the DHUD_Layout.lua in line 50

    ["l_ph_pm_eh_th_tm"] = { "Interface\\AddOns\\DHUD\\layout\\bg_21" , 0 , 1 , 0 , 1 },

    ["r_ph_pm_eh_th_tm"] = { "Interface\\AddOns\\DHUD\\layout\\bg_21p" , 1 , 0 , 0 , 1 },

    and if u are getting the [0] unknown text I fixed it adding this to DHUD_Vars.lua at line 72

       if UnitExists(unit) then
           return text
       else
           return ""
       end
    
  • Sept. 29, 2007, 09:34AM (10 months, 3 weeks ago)

    Can you be more specific as to where it needs to be in the two files please? I dont have a text editor with line numbers.

  • Oct. 9, 2007, 02:53PM (10 months, 2 weeks ago)

    For the first fix search for "l_ph" and place the 2 new lines after all the set of strings begining with "l_ph", but before the "}".

    For the other, search for "name", line 72 is the next one after

    text = DHUD:gsub(text, '<name>', "");
    end
    end

    Hope it works

  • July 17, 2007, 10:53PM (1 year, 1 month ago)

    A version of this mod with minor fixes is posted here:

    http://wow-en.curse-gaming.com/downloads/details/8535/

  • July 13, 2007, 06:48AM (1 year, 1 month ago)

    This AddOn is rather broken for WoW 2.2.0. I am seeing about making an update for it, but not having too much luck.

  • July 8, 2007, 04:55PM (1 year, 1 month ago)

    Cry is right, cry @ the author.

    The net is open source, if you dont like that ..then dont contribute. People jack things all the time but you should see that your version is popular enough to show where credit is due. First line in your features is "Based off Drathal's original 0.9b5" so did you even create this 100% on your own?

    Come on ..update and let us all enjoy.


    btw im reporting this string: ph_pm_eh_th_tm

  • June 26, 2007, 04:29AM (1 year, 1 month ago)

    /cry I've become dependent on it!

  • June 13, 2007, 05:37PM (1 year, 2 months ago)

    I completely understand your reason for not maintaining DHUD. As a software developer, this really pisses me off. I love DHUD and will miss it. With that said, how do I join your guild so I can get further updates.

    Frater Kamose internecromancer.com

  • June 12, 2007, 06:53PM (1 year, 2 months ago)

    can u tell me your guild and server so I can join to get all the new updates on this mod =) I love it to much

  • June 7, 2007, 01:15AM (1 year, 2 months ago)

    How can I get the damage to show over the target like it is normally?

    Thanks.

  • March 16, 2007, 07:31PM (1 year, 5 months ago)

    I am sad that this mod is dead, did you ever think about the mass of players you gave fun to? the mass who love your mod and are really angry about those guys who "rape" your mod? is this really the only way; kept it close, so that only the few you trust can use it?

    I am afraid of the patch where this mod needs an update. Please think about your decision for those who just use and love it.

  • June 2, 2007, 09:02PM (1 year, 2 months ago)

    This mod still works ;)

  • March 11, 2007, 01:35PM (1 year, 5 months ago)

    I've downloaded this mod and it's starting to grow on me, but I'm having a few problems.

    The one thing i miss about my original interface is that I can see the player's portraits. They are also a lot easier to click on when you're trying to inspect someone.

    Is there any mod out there that can display both you and your target's portraits?

    I know that DHUD has an option to show the original health/mana bars with the portrait, but I'm looking for just the portrait by itself.

  • March 11, 2007, 01:44AM (1 year, 5 months ago)

    if this mod is still being made (i hope it is, i loooooove it :P) i'd like to see an energy ticker, kinda like the one that works with the X Pearl frames (it gets annoying when the ticker is AWAYS going lol) and maybe some new bar texture types, but i'm more concerned about the ticker :P it would make my life muuuch easier

 
  • Similar Addons
  •  
  1. 2,215 DamageMeters Combat
  2. 2,021 Recount ... Combat
  3. 1,823 Natur EnemyCastBar PvP, Buffs & Debuffs, Raids & ...
  4. 1,428 Decursive 2.0 ... Buffs & Debuffs and Combat
  5. 1,396 Quartz Combat
Advertisement