Download
(86Kb)
Download
Updated: 06-10-10 07:22 AM
Pictures
File Info
Updated:06-10-10 07:22 AM
Created:03-13-09 06:07 PM
Downloads:18,618
Favorites:170
MD5:

hud  Popular! (More than 5000 hits)

Version: 1.2
by: Mickelus [More]

hud

Configuration can be accessed with /hud

Most things should work now exept changing animations on health and power bar, left and right block and settings for runes/cp.

Clicking the top left and top right corners of your screen should do the same thing as clicking your playerframe and targetframe.

Known bugs:
-health and power bars may act strange/show inaccurate values when their values increases and/or decreases rapidly
-combo points may not show when changing to a target that you already have combo points on


I belive a video would explain the addon better than a picture.

1.2: Fixed bugs with target power bar(texcoords and UNIT_DISPLAYPOWER)
1.1: fixed some sort of bug I think.
1: Fixed bugged bars!


9: Colors for targetbars, target health changes.
8.1: Fixed bug! loelz
8: Implented some sort of interaction thing, toc bumped.
7: Fixed bugs from release 6.
6: Added condition based fading and profiles.
5: Range checks should now be fully implented.
4: Added a castbar, or more like a castring.
3: Left, right and bottom bars should now be able to track buffs/debuffs.
2: you may now use the sweeping animation on the healthbar. Now using .zip . Does not yet use blizzards animation system (me so slack). toc bump.
1: Initial release
Post A Reply Comment Options
Unread 05-24-14, 02:19 PM  
samvx
A Defias Bandit
 
samvx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 118
Uploads: 3
Abandoned?

It's an abandoned project? or anyone else knows about a similar addon? ty in adavance
Last edited by samvx : 05-24-14 at 02:24 PM.
Report comment to moderator  
Reply With Quote
Unread 07-14-12, 10:13 AM  
Wizzpop
A Kobold Labourer
 
Wizzpop's Avatar

Forum posts: 0
File comments: 3
Uploads: 0
Bravo to Neo2121, thanks for the updated file
Report comment to moderator  
Reply With Quote
Unread 05-05-12, 09:29 AM  
Baine
A Murloc Raider
 
Baine's Avatar
AddOn Author - Click to view AddOns

Forum posts: 4
File comments: 393
Uploads: 1
Re: ????

Originally Posted by samvx
Hello...some body here?....
sure
__________________
Report comment to moderator  
Reply With Quote
Unread 05-05-12, 08:25 AM  
samvx
A Defias Bandit
 
samvx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 118
Uploads: 3
Question ????

Hello...some body here?....
Report comment to moderator  
Reply With Quote
Unread 04-27-11, 09:02 AM  
Kanugga
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
i broke it

SOOOOO i was playing with the scale in the general options(unsuccessfully) and now my target bar is customizable and it disappears shortly after log in in, also note worthy the profile tab has totally disappeared and the general tab only has the scale option but no input line. Is there a way to reset the mod?(again profile line is gone so no "default")
Report comment to moderator  
Reply With Quote
Unread 03-06-11, 10:20 AM  
andfinnel
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Bug barre mana

Correctif bug barre mana change in mHud.lua "UNIT_MANA" end "UNIT_MAXMANA" par "UNIT_POWER" end "UNIT_MAXPOWER"
Report comment to moderator  
Reply With Quote
Unread 03-05-11, 04:12 PM  
berkz
A Defias Bandit

Forum posts: 2
File comments: 3
Uploads: 0
I would love a fan version. I agree with everything u say. This addon has such a huge potential.
Report comment to moderator  
Reply With Quote
Unread 01-24-11, 03:31 PM  
Nanky
A Defias Bandit

Forum posts: 3
File comments: 1
Uploads: 0
Fan Version!

Hi i noticed neo2121's update and now im wondering if there is somebody out there with enough free time (lol) and knowledge to work on an advanced fan version (not just an update) for this addon?

I see a huge potential in this addon and i think it might be possible to create a powerfull addon for blind casters (players like advanced MT's, MH's etc. with no time to look around on the screen).

An addon that gives you every information you need within your peripheral vision.

It would need a few adds n changes like:

- a chance to put CD's, notes or triggers where the dk runes are in this video http://www.wegame.com/watch/sucky_vert/
With the same effect (its something i used as MT)

- threat indicator (for more then 1 mob). Just a row of dots/points along the border that represents a group of mobs and showing their aggro by turning from green to red (or vice versa for a tank so he knows that close to loosing one mob to a noob dm). I saw an addon like this once.. so its possible.

- a small rack of buttons (maybe at the bottom left or right within the border) for marks or some items you wanna have as close as possible.

- recount, omen, DBM integrations to show the essential informations in a graphical way or as small text within the hud so you have a clearer screen.

and a lot more...


Anybody interested? Id be honored to do the concepts and graphics.
Last edited by Nanky : 01-24-11 at 03:32 PM.
Report comment to moderator  
Reply With Quote
Unread 10-30-10, 09:19 AM  
neo2121
A Defias Bandit

Forum posts: 3
File comments: 4
Uploads: 0
Well having gotten no reply i took it upon myself to fix the power bar that wasn't updating after the patch.

I read on wowwiki that an important change to the api was implemented in 4.0.1:
' UNIT_MANA, UNIT_ENERGY, UNIT_RAGE, UNIT_RUNIC_POWER, UNIT_FOCUS and UNIT_HAPPINESS events, as well as their UNIT_MAX* counterparts, no longer fire. UNIT_POWER and UNIT_MAXPOWER may be used instead. '

So all you need to do is change all lines in mHUD.lua that register those events, they look like this ('something' will be different things like 'topbar' etc):

something:RegisterEvent("UNIT_ENERGY")
something:RegisterEvent("UNIT_ENERGYMAX")
something:RegisterEvent("UNIT_RAGE")
something:RegisterEvent("UNIT_RAGEMAX")
...etc

and just remove them (all the ones that contain those replaced events i mentioned) and replace them with this (you'll have to edit each place where they occur):

something:RegisterEvent("UNIT_POWER")
something:RegisterEvent("UNIT_POWERMAX")

I'll PM the author with the modified file, if anyone wants it u can get the updated file HERE.
Report comment to moderator  
Reply With Quote
Unread 10-23-10, 04:12 AM  
neo2121
A Defias Bandit

Forum posts: 3
File comments: 4
Uploads: 0
I'm very sad to see this mod isn't working for the latest patch.. it does show up but health and mana and other bars aren't updating at all.. Please fix it, I feel like I'm missing an arm without it! Best hud out there if you ask me..
Report comment to moderator  
Reply With Quote
Unread 09-28-10, 08:38 AM  
Shannara80
A Murloc Raider

Forum posts: 5
File comments: 2
Uploads: 0
Originally posted by Mohfuu
I'd like to suggest a few things.

2.
This suggestion is of smaller importance, but the fonts that display health, power, spellcast ect. look horrible compared to the rest of the hud, a better looking font would make this addon even better looking.
If you feel comfortable editing LUA code you can easily change the fonts. The folder that hud looks for is the fonts folder in the WoW directory (where the game is installed). Just copy any font that you want to use in there then:

1. copy the name of the font.
2. go to the World of Warcraft\Interface\AddOns\hud folder and open mHud.lua in wordpad
3. do a search and replace (Ctrl+h), in the find box look for, ARIALN, and then put the name of the font you would like to use in the Replace with box.
4. Save and exit wordpad, and load up WoW.
Report comment to moderator  
Reply With Quote
Unread 08-25-10, 10:45 AM  
Mohfuu
A Murloc Raider

Forum posts: 4
File comments: 9
Uploads: 0
I'd like to suggest a few things.

1.
Would be better if the rune blocks eased their way in from the start of their cooldown and all the way to the end, instead of having them ease their way in at the very end. Most peoples brains are wired to communicate visually and not with numbers. Not being able to predict the flow of my runes is making this addon un-usable for me. Having said that, everyones brains function differently and this may not be as much of a problem for everyone else as it is for me.

2.
This suggestion is of smaller importance, but the fonts that display health, power, spellcast ect. look horrible compared to the rest of the hud, a better looking font would make this addon even better looking.

3.
Make it easier to leave parties, I might be retarded, maybe there's some command to leave parties.. I don't know. I've grown accustomed to leaving parties by rightclicking the playerframe, which isn't possible with this hud.

4.
Add a target cast-bar/thing?


Other then that, you've made the best looking hud for WoW but I'm sure you've heard that plenty of times before. I haven't gotten around to testing it in the arena (I have a sneaking suspicion it is unfitting for arena) but I have tested it in raiding and must say I liked it very much apart from the rune blocks.
Report comment to moderator  
Reply With Quote
Unread 07-14-10, 04:20 AM  
ChiefORZ
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
thx
Report comment to moderator  
Reply With Quote
Unread 07-14-10, 01:08 AM  
Mickelus
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 4
File comments: 117
Uploads: 8
Originally posted by ChiefORZ
Is there a way to activate the "classic" World of Warcraft Player and Targetframe added to that hud?
That depends on what you're willing to do!
Remove(or comment out if you know what that is) line 1199 to 1205
edit: that would be in the file mHud.lua in the hud folder.
Last edited by Mickelus : 07-14-10 at 01:11 AM.
Report comment to moderator  
Reply With Quote
Unread 07-13-10, 01:48 AM  
ChiefORZ
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Is there a way to activate the "classic" World of Warcraft Player and Targetframe added to that hud?
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.