• World of Warcraft Addons
  • World of Warcraft
  • Average Rating:

  • Your Rating

  • Share
  • Report Abuse

PitBull Unit Frames 3.0

 
Project Updated:
Files Updated: Sat, Dec 12 2009
Supports Game Version: 3.3.0
Category: Unit Frames
Tags:

, , , and [Edit Tags]

Project Manager: ckknight
Additional Authors: Shefki
Current Version: v3.2.15
License: GNU General Public License version 2 (GPLv2)
Development Site: WowAce.com
Avg Daily DL (last 30 days): 361
Downloads Total: 1,582,809
Favorites: 1,613
Comments: 1,192
  • About PitBull Unit Frames 3.0
  •  

Accepting paypal donations to ckknight@gmail.com

PitBull is a Unit Frames addon that provides maximal customization and undergoes rigorous efficiency testing. It is created in a modular framework, which allows for mulitple authors to put their skills to work creating this great project.

It has support for many different kinds of units: player, target, pet, pet's target, target of target, target of target of target, focus, focus' target, party, party pets, party targets, party pet targets, raid, raid pets, raid targets, main tanks, main tank targets, main assists, main assist targets, etc.

Note: Almost all texts are configurable using the LibDogTag-3.0 format. See http://old.wowace.com/wiki/LibDogTag-3.0 for details or type '/dog' in-game.

Modules:


  • Aura - track any buffs or debuffs on the shown units. Also has the ability to highlight based on a curable debuff.
  • Banzai - highlight units that have threat on them.
  • BarFader - allow for smooth fading when units gain or lose health/mana.
  • CastBar - attach a cast bar to the applicable units: covers player, pet, party, target, focus, etc.
  • CombatIcon - show an icon when the unit is in combat.
  • CombatFader - fade unit out when out of combat.
  • CombatText - show realtime damage/healing text on the unit frame.
  • ComboPoints - for Rogues and Druids, show combo points.
  • DruidManaBar - for Druids, show a mana bar when in Cat/Bear form.
  • ExperienceBar - for the player and hunter pets, show an experience bar.
  • HealthBar - show current health.
  • HappinessIcon - show an icon on the pet frame to indicate its happiness.
  • HideBlizzard - hide unneeded Blizzard frames .
  • Highlight - show a highlight when hovering over a frame or targetting said frame.
  • LeaderIcon - show the leader of the party.
  • MasterLooterIcon - show the master looter of the raid.
  • Portrait - show a 3D, 2D, or class portrait.
  • PowerBar - show a mana/energy/focus/rage bar.
  • PvPIcon - show an icon when the unit is in PvP mode.
  • RaidTargetIcon - how the raid target icon (Skull/Triangle/etc.)
  • RangeCheck - fade the unit frame slightly when the unit is out of range.
  • ReadyCheckIcon - show Ready Check icon based on if the unit is ready or not.
  • ReputationBar - for the player, show a reputation bar.
  • RestIcon - show an icon if the player is resting.
  • Spark - Graceful display of energy ticks and the spellcasting five-second-rule.
  • ThreatBar - show a threat bar on the unit frame.
  • TotemTimers - shows Totem timers for the PitBull player frame.
  • VisualHeal - for healers, shows a bar showing the estimated heal amount while casting.
  • VoiceIcon - show an icon based on whether or not the unit is talking.

    Note: all modules can be enabled or disabled on-demand. Disabled modules don't take up any extra memory or CPU power.
  • Downloads (5)
  •  
File Name Release Type Game Version Downloads Date
Addon Curse.com Beta 2.3.3 0 9/29/2008
  File Name Release Type Game Version Downloads Date  
  PitBull Unit Frames 3.0 v3.2.15 Release 3.3.0 46,449 12/12/2009
  PitBull Unit Frames 3.0 v3.2.14 Release 3.2.0 159,446 8/4/2009
  PitBull Unit Frames 3.0 v3.2.13 Release 3.2.0 10,031 8/4/2009
  PitBull Unit Frames 3.0 v3.2.12 Release 3.2.0 587 8/4/2009
  PitBull Unit Frames 3.0 v3.2.11 Release 3.1.0 177,393 4/18/2009
  • 1 page(s)
  • Comments

Add Comment

Add

You need to login or register to post.

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.
  • seo0drick said

    I find a automatic mining addon,with 3.3.2 patch
    www.RatingBuster.org
    I appreciate all the hard work you've put into it.Very simple.

    Reply Report Permalink
  • Shakari said

    Been trying to save an old "target's target" layout profile, or create a new one, and the option to "save layout" is greyed out and will not let me save any layouts anyone had this before?

    Reply Report Permalink
  • Mecaire said

    How do I set my target frame auras to grow right-to-left instead of left-to-right?

    Reply Report Permalink
  • Squashmine said

    Hi, I took a break playing WoW for about 4 months. Everything was working fine with Pitbull3. Now that I'm back, I've updated WoW to 3.3.0 ... however, I am experiencing a very weird problem with the latest version (3.2.15) of PB3:

    The powerbar of the target frame is constantly handled as a rage bar (so it will be showed in red color), no matter what type of target it is (mana- or energy-based). I did not test if other frametypes are affected as well by the same symptom yet, at least the player frame behaves normally.

    In an attempt to locate the source of error I already tried as follows:

    - Checked the PB3 configuration. Everything seems fine with it.
    - Temporarily deactivated all other addons except Pitbull3 and it's powerbar module, but the problem still persist.
    - Reinstalled PB3 and deleted the Cache folder - didn't solve the problem.

    I don't have a clue how to get it to work again as it should. Help me please! :(

    Reply Report Permalink
  • Squashmine said

    Ah, I found the solution, there is a typo in file powerbar.lua, line 151

    To solve replace
    local _,c = UnitClass(unit)
    with
    local c = UnitClass(unit)

    :)

    Reply Report Permalink
  • joequincy said

    Not a typo. The function "UnitClass(unit)" returns two values, which are assigned to variables by a comma separated list ("_" and "c"). The use of "_" is actually a common method of ignoring returned values, thus if you called a function that returned more results, such as "GetBattleFieldInfo()", you could filter out unwanted information by coding:
    local bgName,_,_,_,_,_,_,minLevel,_ = GetBattleFieldInfo()
    Then you'd just have the minimum level and name of the Battleground you last queued for. (http://www.wowwiki.com/API_GetBattlefieldInfo)

    As far as this specific issue, this change will only work on English clients, unless I wholly misunderstand the addon's method for picking a color based on the output of UnitClass(). For more info, check out http://www.wowwiki.com/API_UnitClass

    Reply Report Permalink
  • Squashmine said

    Hm, I noticed that _, seems to be a common programming element of some sort in Lua. To be honest, I don't know what it exactly is used for and what it does. Though I will keep this removed until the author of the addon hopefully fix the described problem...

    Reply Report Permalink
  • zarlaan said

    I'm having issues where the addon configuration just will not respond. I can't change any settings even after rebooting. It seems to happen randomly. Anybody else ever have this problem or know what may be causing it?

    Reply Report Permalink
  • _eric_ said

    Is there a way to see the party roles (tank/heal/dps) as it is now possible with standart unit frame un rand donjons?

    Reply Report Permalink
  • syali said

    After working with ag_uf, suf, stuf for a _very_ long time, I came back to check out Pitbull, now that it's not pre-release and has pet frames. =)

    Trying it now, it's truly spectacular in comparison to every other frames addon I've worked with.

    The configuration is pretty straightforward compared to other raid frames. There are some options which I wouldn't have bothered to put into Pitbull and perhaps could be hidden away in an "advanced options" toggle. I have some specific annoyances, but I intend to work with Pitbull for a week or two before writing of them.

    malak72's patch below would be nice to have examined and officially integrated.

    Reply Report Permalink
  • Armikur said

    Under "Other" for the category you can turn on things you've turned off. I have, however, been unable to turn back on text I clicked to hide. No matter what I do, it won't uncheck the "hidden" checkbox.

    Reply Report Permalink
  • galickgun said

    I'm having the same problem here.
    Dunno what to do..

    Reply Report Permalink
  • galickgun said

    I'm needing some help.
    I was configuring the Party frames, and I clicked on Text section, and disabled some of them. But now I can't enable them again. Don't know why.

    Could anyone help me?

    Reply Report Permalink
  • Thalsora said

    Amazing addon, key to any player, experienced or not.

    I do, however, have a question. When targeting an enemy (PVE) there is nothing to show whether or not it will grant you experience. As you know, originally the levels of the target would be in grey to show this (green for easy etc). As far as i'm aware there isn't anything in pitbull to show this. If there is could you please fill me in, if not then i think that it would be another amazing feature to this addon.

    Cheers

    Reply Report Permalink
  • syali said

    > When targeting an enemy (PVE) there is nothing to show whether or not it will grant you experience. As you know, originally the levels of the target would be in grey to show this (green for easy etc). As far as i'm aware there isn't anything in pitbull to show this.

    This feature does exist. It's actually one of the options given. Play around with the various text areas, I think it's in 'class'.

    Reply Report Permalink
  • malak72 said

    I took a minute and modded the raid target icon module into a new group role module allowing you to see the dagger, cross or shield on the unit frame while using the lfg tool. I've included a link to just that module in a zip file on our guild server.

    http://dkpfiles.com/forwhom/files/PitBull_RoleIcon.zip

    Take care folks.

    Reply Report Permalink
  • joequincy said

    I've made some minor modifications to this (bugfixes mostly) and would like to post it to Curse with you listed as an author. Interested?

    Reply Report Permalink
  • jhilkey said

    Got the following error using v.3.2.15:

    Date: 2010-01-15 10:51:19
    ID: 1
    Error occured in: Global
    Count: 1
    Message: ..\AddOns\PitBull_VisualHeal\VisualHeal.lua line 321:
    TexCoord out of range
    Debug:
    (tail call): ?
    [C]: SetTexCoord()
    PitBull_VisualHeal\VisualHeal.lua:321: UpdateBars()
    PitBull_VisualHeal\VisualHeal.lua:399: ?()
    ...ore\libs\CallbackHandler-1.0\CallbackHandler-1.0.lua:146:
    ...ore\libs\CallbackHandler-1.0\CallbackHandler-1.0.lua:146
    [string "safecall Dispatcher[5]"]:4:
    [string "safecall Dispatcher[5]"]:4
    [C]: ?
    [string "safecall Dispatcher[5]"]:13: ?()
    ...ore\libs\CallbackHandler-1.0\CallbackHandler-1.0.lua:91: Fire()
    ...Ons\PitBull\libs\LibHealComm-3.0\LibHealComm-3.0.lua:1556: ?()
    ...Ons\PitBull\libs\LibHealComm-3.0\LibHealComm-3.0.lua:18:
    ...Ons\PitBull\libs\LibHealComm-3.0\LibHealComm-3.0.lua:18

    Reply Report Permalink
  • CrayveN said

    If you want to change the size of some frames,they are linked with each other:
    - Raidgroup 4 and Maintanks
    - Raidgroup 5, 7 and Maintank Target
    - Raidgroup 4, 8 and Maintank Target's target

    Is this a known bug?

    Reply Report Permalink
  • Zunadae said

    I tried to change my mana bar to show a percentage. Now there are no numbers, no percent. No nothing. Just a blank blue bar. Is it fixable? I've tried... pretty much everything... deleting wtf settings and addon didn't help any either for whatever reason.

    Reply Report Permalink
  • Addon Packs Containing PitBull Unit Frames 3.0
  • Similar Addons
  •  

Average downloads per day

  1. 11,397 HealBot Continued Unit Frames, Buffs & Debuffs...
  2. 2,530 X-Perl UnitFrames Raid Frames, and Unit Frames
  3. 1,800 Grid Unit Frames
  4. 1,699 GridStatusRaidDebuff Unit Frames
  5. 1,389 VuhDo Buffs & Debuffs, Druid, Healer...