PitBull Unit Frames 4.0
PitBull Unit Frames 4.0
Woof. Arf. Yip.
Getting Started:
You can help translate PitBull for your language with the localization tool.
Classic
PitBull works with WoW Classic! Classic Era/Vanilla is supported in
v4.3.x-vanilla
releases. Cataclysm Classic is supported in v4.2.x
releases
(the same releases retail use).
Classic Era caveats:
- Aura duration is not available from the API, so PitBull uses LibClassicDurations to show them. The duration can be inaccurate if it's affected by rank or talents.
- Cast info is only available for your spells from the API. PitBull uses LibClassicCasterino to show cast bars for other units, but this can be inaccurate since there is a lot of guess-work involved.
Download
CurseForge: https://www.curseforge.com/wow/addons/pitbull-unit-frames-4-0
Wago: https://addons.wago.io/addons/pitbull4
WoWInterface: https://www.wowinterface.com/downloads/info20021
How can i show my Demons as a Demolock ( Imps, Felhunter s.o.) ?
For whatever reason, the layout editor's "aura-->highlights" options now no longer function. No matter what choice I have selected (I preferred the "thin border" option), the entire unit frame is coloured (which I guess would be the "normal" option) by the debuff colour (green for poison, etc.), making it very difficult to see my health bar/missing health. Not sure what caused this, but deleting and reinstalling the mod hasn't helped.
Hello, thank you very much for developing this plug-in. I am a Chinese player, our national system will be 10000, expressed as "万", rather than "10,000". I hope the author can make a patch for us.
I thank you for the vast numbers of Chinese players
My English is not good. This passage is translated by Google
Similar to the following code:
Thanks, v4.1.9 should fix this.
Gotta say, the Easter Egg for International Talk Like a Pirate Day is just more annoying than cool/fun, especially as it appears to be the cause of these LUA errors.
I'm inclined to agree. At least the error is fixed now. (or whenever Curse syncs v4.1.8)
Hi there. Any possibility of hiding the extra artwork around the zone ability and extra action buttons?
That is a bit out of scope for a unit frames addon. I do have BetterExtraActionButton which allows you to hide the artwork for that button, but I've always just dragged the zone ability button onto my bars.
something wierd happening with my frame, its got a blank box attached on the upper left corner, can also be seen on the Target frame when i target myself. Well, its blank until I cast Gargoyle, then it shows the gargoyle time until despawn and then just the icon forever... I have gone through every option i could and cant seem to toggle it. Here is a screenshot with /Fstack data.
http://imgur.com/KLIeZHo
totem module
sorry for late reply, totally forgot i even commented here, busy week. thanks, thought i toggled everything but that solved it.
Is there an API documentation on the Lua Texts? Specially Pitbull functions.
So who still does the updates to this addon? I've used this for years and never donated but I would like to now. I don't see a donation button listed here though.
is it possible to set the Life Frame from 2000000 to 2.000.000 ? And the Other Bars? I cant find the right settings.
You can go to the text for the number (probably Lua: Health) and change how it is formatted there. e.g. return "%s",BreakUpLargeNumbers(HP(unit))
yeah well........ it looks like
local s = Status(unit)
if s then
return s
end
local cur, max = HP(unit), MaxHP(unit)
return "%s/%s || %s%%",Short(cur,true),Short(max,true),Percent(cur,max)
local s = Status(unit)
if s then
return s
end
return "%s",BreakUpLargeNumbers(HP(unit))
but i see only one frame of the numbers i would like to have it like this:
3.500.000 / 3.500.000
looks better :)
Did you figure it out? You just need to change the last line to:
return "%s / %s",BreakUpLargeNumbers(HP(unit)),BreakUpLargeNumbers(MaxHP(unit))