Download
(4Kb)
Download
Updated: 06-01-09 08:56 AM
Pictures
File Info
Updated:06-01-09 08:56 AM
Created:05-30-09 05:41 PM
Downloads:2,637
Favorites:12
MD5:

HitCap

Version: 1.0.2
by: kneeki [More]

DISCONTINUED

by: kneeki - [email protected]

Creates a small frame above the Blizzard Target Frame to display your current hit percentage on your target. This addon is fully functional with all classes, and specs, requiring zero configuration (thus, there is none). Mouse over the small frame to see additional information about how the hit rating is achieved.

This addon has only been tested using Blizzards Unit Frames. If you use any other UF addon, you may have to configure either the frame addon, or this one. I do not ever intend to support any other UF addons other than Blizzards stock.

To enhance this addon further, use the following addons:

BUGS:
  • Nothing I know of at this moment.

01June2009: Open up Core.lua to adjust the parent frame for those of you whom do not use the default unit frames.

31May2009: The frame is now draggable.
Optional Files (0)


Post A Reply Comment Options
Unread 06-26-09, 05:20 AM  
kaimox
A Fallenroot Satyr

Forum posts: 25
File comments: 100
Uploads: 0
Please make the frame movable! It's sitting exactly at that place, where the raid icons normally go ... it's more important for me to know quickly whether I really target skull or something else, so I hat to remove hitcap.
Report comment to moderator  
Reply With Quote
Unread 06-02-09, 01:41 PM  
Codex
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 19
File comments: 280
Uploads: 12
Does it work with XPerl?
Report comment to moderator  
Reply With Quote
Unread 06-02-09, 08:59 AM  
Codex
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 19
File comments: 280
Uploads: 12
Oh, it already does it ^^
Report comment to moderator  
Reply With Quote
Unread 06-01-09, 01:40 PM  
kneeki
A Flamescale Wyrmkin
 
kneeki's Avatar
AddOn Author - Click to view AddOns

Forum posts: 134
File comments: 144
Uploads: 5
Like, if you're under, show the hit needed to be max sort of deal? I'm not really sure what you mean, it is already turning red/green depending on if you're capped or not.
Report comment to moderator  
Reply With Quote
Unread 06-01-09, 12:40 PM  
Codex
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 19
File comments: 280
Uploads: 12
Would be nice to show current hitcap of your spec/class and red if youre below it and green if youre above it
Report comment to moderator  
Reply With Quote
Unread 06-01-09, 08:06 AM  
kneeki
A Flamescale Wyrmkin
 
kneeki's Avatar
AddOn Author - Click to view AddOns

Forum posts: 134
File comments: 144
Uploads: 5
I had a feeling this would occur. In the next update I'll make things a bit easier for those who don't use Blizzard frames.
Report comment to moderator  
Reply With Quote
Unread 05-31-09, 05:11 PM  
Ferous
Sheer Sense of Doom
AddOn Author - Click to view AddOns

Forum posts: 863
File comments: 563
Uploads: 10
Hello there! I was curious if you plan on adding some kind of LibBroker or FuBar support? That would be awesome since I don't use Blizzard Default UI Frames but I would love to use this AddOn If not, Thank you for your time regardless!

Sincerely,

Ferous/Electrify
Report comment to moderator  
Reply With Quote
Unread 05-31-09, 11:41 AM  
kneeki
A Flamescale Wyrmkin
 
kneeki's Avatar
AddOn Author - Click to view AddOns

Forum posts: 134
File comments: 144
Uploads: 5
Ah lol!

I just finished my code to make the frame draggable as well. I was just about to post it until I thought I should wait for a little, to make sure I'm not forgetting anything else
Report comment to moderator  
Reply With Quote
Unread 05-31-09, 11:40 AM  
Dridzt
A Pyroguard Emberseer
 
Dridzt's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1362
File comments: 831
Uploads: 59
Originally posted by kneeki
I thought about making it draggable as well, it is likely to be something I add. Yes, it does always assume faerie fire is improved, as there is no way to tell otherwise (the talent does not change it's tooltip), and any food buff will affect your paper doll, so it's actually included in your 'Paper Doll' section. The 'Buffs' area is really only for alliance, giving the 1% racial from Dranaei.

I left the 'Buffs' section easy to expand, just in case I'm missing something.
Thanks for the reply that make sense.

I patched my local copy to make it draggable it's few lines of code but would be nice to see it in the original.
I don't think it's 'bloat' :-)
Code:
f:SetMovable(true)
f:SetScript("OnMouseDown", function()
	f:StartMoving();
end)
f:SetScript("OnMouseUp", function()
	f:StopMovingOrSizing();
end)
f:SetScript("OnHide", function()
	f:StopMovingOrSizing();
end)
That's my addition to make it movable locally.
Thanks again for the nice addon.
Report comment to moderator  
Reply With Quote
Unread 05-31-09, 11:03 AM  
kneeki
A Flamescale Wyrmkin
 
kneeki's Avatar
AddOn Author - Click to view AddOns

Forum posts: 134
File comments: 144
Uploads: 5
Originally posted by Dridzt
Very nice little addon.

Only "feature" request I'd have is to make the frame drag-able.

Other than that perfect for me.

I took a quick look through the code and I was wondering about a couple things.
Does it assume that Faerie Fire on the target is always Improved?
Does it take into account food buffs? Worg Tartare / Snapper Extreme come to mind.
I thought about making it draggable as well, it is likely to be something I add. Yes, it does always assume faerie fire is improved: as there is no way to tell otherwise (the talent does not change it's tooltip), and any food buff will affect your paper doll, so it's actually included in your 'Paper Doll' section. The 'Buffs' area is really only for alliance, giving the 1% racial from Dranaei.

I left the 'Buffs' section easy to expand, just in case I'm missing something.
Last edited by kneeki : 05-31-09 at 11:40 AM.
Report comment to moderator  
Reply With Quote
Unread 05-31-09, 02:30 AM  
Dridzt
A Pyroguard Emberseer
 
Dridzt's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1362
File comments: 831
Uploads: 59
Very nice little addon.

Only "feature" request I'd have is to make the frame drag-able.

Other than that perfect for me.

I took a quick look through the code and I was wondering about a couple things.
Does it assume that Faerie Fire on the target is always Improved?
Does it take into account food buffs? Worg Tartare / Snapper Extreme come to mind.
Report comment to moderator  
Reply With Quote
Unread 05-30-09, 10:05 PM  
kneeki
A Flamescale Wyrmkin
 
kneeki's Avatar
AddOn Author - Click to view AddOns

Forum posts: 134
File comments: 144
Uploads: 5
I have quite a few characters, and I find it useful on all of them. =)
Report comment to moderator  
Reply With Quote
Unread 05-30-09, 08:38 PM  
Sythalin
Curse staff
 
Sythalin's Avatar
AddOn Author - Click to view AddOns

Forum posts: 680
File comments: 373
Uploads: 15
Not sure how what the use of this is. You can just get your hit % from the character screen.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: