Download
(344Kb)
Download
Updated: 08-11-18 11:23 AM
Pictures
File Info
Updated:08-11-18 11:23 AM
Created:07-04-09 05:47 PM
Downloads:44,779
Favorites:185
MD5:
Categories:oUF: Layouts, Unit Mods

oUF Phanx  Popular! (More than 5000 hits)

Version: 8.0.1.0
by: Phanx [More]

I am no longer developing or maintaining World of Warcraft addons. I haven't played in years, and don't have the time or interest to continue working on addons for a game I don't play anymore. If you are an addon author interested in continuing one of my addons, please see https://phanx.net/addons/. If you are an addon user, sorry, but there won't be any more fixes or updates from me.

oUF layout with many PvE-oriented features and a few options.
Features include aura filtering, dispel highlighting, threat highlighting, incoming heal bars, display of all secondary resources, totem timers, cast bars for player/pet/target, incoming resurrection text, combat feedback text, AFK timers, and smoothly updating bars. Mouse over the frames for more detailed health and power text. Hold Shift out of combat to temporarily disable aura filtering and see all buffs. Some elements auto-adjust based on role (healer, tank, damage).

Type /pouf for options, or browse to the oUF Phanx panel in the standard Interface Options window.

Supported units: player, pet, target, target’s target, focus, focus’s target, party, party pets, arena enemies, and bosses. Raid frames will not be added; use Grid or another raid frame addon of your choice.

Supported plugins: oUF_MovableFrames, oUF_SpellRange, and any plugin which does not require explicit support from within a layout. Also Clique for click-casting.

Note that you must install the oUF core addon separately.
Feedback
Post a ticket on GitHub or post a comment on this page. If you are reporting a problem, please read this first.

If you want to change something that does not have an in-game option to change, you will need to modify the addon's Lua code yourself. If you need help modifying the code, do not post here. This page is for support of the official version only, and tickets/comments asking for help with code changes on this page will be deleted. Post in the oUF forum instead.

If you are using a modified version of oUF_Phanx, do not post here. This page is for support of the official version only. Reproduce the problem with the official version first, or post in the oUF forum instead.
Language Support
Works in all languages. Translated into Deutsch, Español, Français (partial), Português (partial), Русский (partial), and 简体中文 (partial). You can add or update translations for any language on the CurseForge project page.

Version 8.0.1.0
  • Updated for WoW 8.0

Version 7.3.5.0
  • Updated for WoW 7.3 and oUF 7.0

Version 7.1.0.0
  • Fixed an error that occurred as a result of Blizzard sending health updates for non-existent units

Version 7.0.3.2
  • Fixed an error with combo points for rogues (ticket #11)
  • Time-limited buffs on NPCs are now shown by default (ticket #10)
  • Fixed boss debuffs not showing on focus/TOT frames (ticket #10)

Version 7.0.3.1 (2016 Aug 14)
  • Fixed an error when opening the aura configuration panel

Version 7.0.3.0 (2016 Aug 13)
  • Updated for WoW 7.0
  • Includes an updated copy of oUF -- the official version will not work!
  • The aura filter lists for most classes were compiled using Wowhead. Please report any missing buffs/debuffs (with their ID) or any buffs/debuffs that are included in the default filters that don't actually need to be shown. Thanks.
Post A Reply Comment Options
Unread 11-05-12, 04:16 PM  
Zathan666
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 64
Uploads: 4
Alright no problem. Thanks for the tips and explanation.
I have a question regarding Boss debuffs though. For example, on the first boss on Stormstout Brewery (Ook-Ook), when you run barrels into him we can't see the debuff at all nor the stacks # of the Brew Explosion. Same thing with Amber-Shaper in Heart of Fear (the stacking debuff you put on boss by using the constuct ability)

I'm not sure how to add these in AuraFilters.LUA

edit: clarified what I meant
Last edited by Zathan666 : 11-05-12 at 06:22 PM.
Report comment to moderator  
Reply With Quote
Unread 11-02-12, 05:56 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
I've added Starfall and fixed Barkskin for the next release.

I won't add a castbar for the focus unit by default. Adding one if you want it is trivially simple, but I don't want one, and I would just never remember to add it for release versions (and then immediately remove it for my own gameplay) even if I wanted to, sorry.

I won't be adding a name on the player castbar either, since you should know which spell you are casting (if you don't, you are probably playing wrong) and I don't want more clutter on the screen. If you want one, edit the Castbar section in core.lua (lines 1251+) and copy the Castbar.Text lines into the player unit section after the Castbar.Time lines.

Holy power and other simple "points" style powers don't have toggles because (a) they are important, unlike druid mana which is only available because it's available in the default UI and some people like cluttering up their UI with it, and (b) there's not really any more information that can be shown about them, unlike eclipse/rune/totem bars where standalone addons can provide bigger displays with icons, text, etc. If you don't want to see them for a specific class, just remove that class from the list of classes that gets a ClassIcons element, on line 798 in core.lua (just below the "Class-specific resources" comment).

If you need more help with code modifications, please take it to the oUF forums, to avoid cluttering this page with comments that have nothing to do with the release version of the addon. Thanks.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Last edited by Phanx : 11-02-12 at 05:58 PM.
Report comment to moderator  
Reply With Quote
Unread 11-02-12, 11:11 AM  
Zathan666
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 64
Uploads: 4
I started using Ouf_Phanx again. After trying all other Ouf layouts, Phanx is the one I always come back to. Nothing else come close in my opinion.

I would suggest to add to aura.lua for druids:
  • auras[48505] = 4 -- Starfall
  • auras[22812] = 4 -- Barkskin (default spellID seems incorrect)

and in the config.lua for "focus":
Code:
castbar = true,
Also 2 more things:
  • Is there an easy way to toggle the spell name @ playercastbar? I'd prefer it personally.
  • Is it possible to toggle off paladin holy power from showing up? You have an option in config to turn off the eclipse bar but none for holy powers

thanks!
Last edited by Zathan666 : 11-02-12 at 12:31 PM.
Report comment to moderator  
Reply With Quote
Unread 11-02-12, 04:58 AM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Version 5.0.5.265
  • Added runes for death knights
  • Added totems for shamans
  • Minor update to aura filter list for warlocks
  • Removed support for oUF_boring_totembar plugin
    Totems are now supported natively by oUF, so there's no need for a plugin.
  • Removed PT Serif font
    If you were using it, just keep the file and don’t change the font option dropdown or — better yet — install SharedMedia and follow the “MyMedia” instructions.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Unread 11-01-12, 04:23 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Added for the next version.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Unread 10-30-12, 10:02 AM  
Ke11ett
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 35
Uploads: 2
Can you please add the following Warlock aura to auras.lua

Lua Code:
  1. auras[603] = 2 -- Doom (Metamorphosis)
Last edited by Ke11ett : 10-30-12 at 10:02 AM.
Report comment to moderator  
Reply With Quote
Unread 10-28-12, 11:32 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Version 5.0.5.256
  • Removed pet battle hiding code, since oUF does this itself now (get the latest version of oUF from Haste's GitHub repo)
  • Fixed some issues with the castbar safezone and background
  • Fixed orb color not updating when class colors are changed
  • Updated auras for feral/guardian druids (thanks Shiryu), shadow priests (thanks Fumler), and mistweaver monks
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Unread 10-19-12, 05:49 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Re: Hello

Originally Posted by Shiryu
savage roar and berserk ... are not being tracked.
Many spell IDs changed in MoP, and I don't play every spec of every class all the time, so there are likely some wrong spell IDs in the filter lists. I haven't even had time to log onto my druid (it's an alt) in MoP. I'll check on these spells and update if necessary.

Originally Posted by Lemon
is it possible to make the auras a little bit smaller?
Yes. See the addon description:

If you want to change something that doesn’t have an option to change, you will need to modify the layout’s code yourself, and I will not provide any assistance for doing so on this page. If you need help modifying the code, post in the oUF forum on this site; I read and respond to many posts there, as do many other community members. Comments on this page asking for help with code modifications will be deleted.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Unread 10-19-12, 02:06 PM  
Shiryu
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Hello

I'm new to your layout and i think its awesome. I do have a quick question though, I noticed on one of the screenshots of the layout that the player frame is tracking savage roar and berserk, however when i log onto my druid and use these abilities they are not being tracked. Would you mind to shed some light on this? Am i missing something? Thank you.
Report comment to moderator  
Reply With Quote
Unread 10-19-12, 05:09 AM  
Lemon
A Kobold Labourer

Forum posts: 0
File comments: 12
Uploads: 0
Hi,

is it possible to make the auras a little bit smaller?
Report comment to moderator  
Reply With Quote
Unread 10-18-12, 03:02 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Updated. Those will make it into the next release. Thanks.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Unread 10-18-12, 09:00 AM  
Fumler
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 8
File comments: 18
Uploads: 2
Hello.

In auras.lua under priest buffs/debuffs

Lua Code:
  1. auras[124467] = 2 -- Devouring Plague

You can change this to

Lua Code:
  1. auras[2944] = 2 -- Devouring Plague

And for the "NEEDS CHECK" parts I found out you just need

Lua Code:
  1. auras[589]    = 2 -- Shadow Word: Pain
  2. auras[34914]  = 2 -- Vampiric Touch

and not

Lua Code:
  1. auras[124464]  = 2 -- Shadow Word: Pain
  2. auras[124465]  = 2 -- Vampiric Touch
Report comment to moderator  
Reply With Quote
Unread 10-16-12, 03:48 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Re: I'm an idiot.

Originally Posted by Timandor
how you you unfilter debuffs on target and focus?
See my comment posted 02-08-12, 05:42 PM... it's on Page 3 of the comments.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Unread 10-16-12, 12:21 AM  
Timandor
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
I'm an idiot.

I didnt have the most up to date ouf framework. with ouf 1.6.0 the orbs are working to show chi.

how you you unfilter debuffs on target and focus? This would basically eliminate my problem if i can focus the other tank to see his debuffs.
Last edited by Timandor : 10-17-12 at 04:05 PM.
Report comment to moderator  
Reply With Quote
Unread 10-15-12, 09:06 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
For those of you seeing issues with chi, combo points, orbs, or anything else, please see the addon description under the large orange "Bug Reports" heading for a list of information I need, and post a proper bug report. Without that information, it's basically impossible for me to help you, and I can only make wild and probably completely useless guesses about what might be the problem. Thanks.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: