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
Then check mark enable, and edit it in the layout as you wish.
Basically what he wants is to put the debuffs that we get off to the side of his character so that he knows when to dispel and what we have on. Let me know :) Also, you should totally RealID add me ;)
- Hope you guys had great holidays!
Im using the latest version.
Maybe I am just missing it but... cant find any support for such thing.
Secondly: If you made a raid group, are you experiencing this issue in config mode only or also live?
Trying to combine 2 lua statements, without much luck. If anyone knows how to combine them, would be greatly appreciated.
The first segment will class color my text, and if the text is too long, it will look like Raider's...... (instead of Raider's Training Dummy).
The second segment will change Raider's Training Dummy, to R.T. Dummy, which looks great, except i can not get it to class color correctly. It is just plain white text.
***************************************************************************************
local r,g,b = ClassColor(unit)
if string.len(Name(unit)) > 12 then
return '|cff%02x%02x%02x%s...|r ',r,g,b,string.sub(Name(unit),1,9)
else
return '|cff%02x%02x%02x%s|r ',r,g,b,Name(unit)
end
***************************************************************************************
local abbr = Name(unit);
if abbr:len() > 20 and abbr:find(" ") then
abbr = abbr:gsub("([^ ]+) +",
function(text)
return text:sub(1,1) .. ". ";
end )
end
return "%s", abbr;
***************************************************************************************
I have tried for a few hours, but with my limited Lua knowledge, i failed :(
Appreciate any help anyone can give.