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,327
Favorites:186
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 05-12-12, 04:37 PM  
Nechrit
A Defias Bandit

Forum posts: 2
File comments: 8
Uploads: 0
Good evening.
First of all i would love to thank you for the great work you are doing, i'm a long-user of this Layout and every day i'm more satisfied by this.

However, i noticed only now my pet bar is totally bugged. First of all, It does have all sort of marks above it, also when i click on it instead of targeting my pet it target's the last target, in case there is noone it targets me. I have no idea of a possible solution actually



Last thing, just a curiosity, is there a way to make border's corners sharpener?


Again, thanks alot for that great layout, keep it up!

Regards,
Nechrit.
Report comment to moderator  
Reply With Quote
Unread 05-10-12, 11:21 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Look at the first line in the block of code you posted:

Code:
if playerClass == "" then addAuras({
That whole list is currently ignored in the layout, because the playerClass variable is never an empty string "", but contains the locale-indepdenent version of the currently logged-in character's class name, such as "SHAMAN" or "DRUID". I intended at some point to add an option for showing PvP-related auras, but never got around to it.

If you want to show the auras in that list, I'd suggest removing the whole if ... then and end wrappers around the addAuras({ ... }) call.
Report comment to moderator  
Reply With Quote
Unread 05-10-12, 11:43 AM  
Micmac
A Kobold Labourer

Forum posts: 1
File comments: 11
Uploads: 0
Editing Custom Aura Filter

Hi, I just started playing again and had used your addon in the past, it's my favorite unit frame layout.

I've been pvping mostly and was trying to add some custom aura filters to see when a target had the following buffs/debuffs. This is taken from auras.lua that I added, all spell ids were taken from wowhead.com or in game using the script you had posted previously in these comments.

Code:
--	Stunned, Spell Reflect, Damage Reduction [PvP]

if playerClass == "" then addAuras({
	[51271] = 1, -- Pillar of Frost
	[44572] = 1, -- Deep Freeze
	[12355] = 1, -- Impact
	[853]   = 1, -- Hammer of Justice
	[1833]  = 1, -- Cheap Shot
	[408]   = 1, -- Kidney Shot
	[12809] = 1, -- Concussion Blow
	[85388] = 1, -- Throwdown
	[20549] = 1, -- War Stomp
	[23920] = 1, -- Spell Reflect
	[20230] = 1, -- Retaliation
	[974]   = 1, -- Earth Shield
	[47585] = 1, -- Dispersion
	[62618] = 1, -- Power World: Barrier
	[17]    = 1, -- Power Word: Shield
	[33206] = 1, -- Pain Suppression
	[6346]  = 1, -- Fear Ward
	[6229]  = 1, -- Shadow Ward
	[91711] = 1, -- Nether Ward
	[543]   = 1, -- Mage Ward
	[11426] = 1, -- Ice Barrier
	[45438] = 1, -- Ice Block
	[1463]  = 1, -- Mana Shield
	[32850] = 1, -- Ardent Defender
	[70940] = 1, -- Divine Guardian
	[498]   = 1, -- Divine Protection
	[85258] = 1, -- Sacred Shield
	[642]   = 1, -- Divine Shield
	[50461] = 1, -- Anti Magic Zone
	[48707] = 1, -- Anti-Magic Shell
	[49222] = 1, -- Bone Shield	
	[61336] = 1, -- Survival Instincts
	[22812] = 1, -- Barkskin
	[871]   = 1, -- Shield Wall
	[19263] = 1, -- Deterrence
	[5277]  = 1, -- Evasion
	[73651] = 1, -- Recuperate
	[31224] = 1, -- Cloak of Shadows
	[20594] = 1, -- Stoneform
	[7744]  = 1, -- Will of the Forsaken
They aren't showing up however. Silenced and Spell lock debuffs show and I was using the same code as those sections of auras.lua. Am I doing something wrong here?
Report comment to moderator  
Reply With Quote
Unread 02-14-12, 05:28 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Originally Posted by 4exoB
1. interruptible cast is no different from the uninterruptible cast.
I haven't seen that issue, and I make liberal use of Wind Shear on my shaman. Enemy cast bars are correctly displayed in red if I can interrupt them, or yellow if I can't.

Which spell(s) are you seeing displayed incorrectly? Is it broken for friendly players, friendly NPCs, hostile players, hostile NPCs, some of those, or all of the above? Does it work when you use the layout without any modifications?

Originally Posted by 4exoB
2. сastbar text extends beyond the frame
Open core.lua in Notepad and find these lines:
Code:
			self.Castbar.Text = ns.CreateFontString( self.Castbar, 16, "LEFT" )
			self.Castbar.Text:SetPoint( "LEFT", self.Castbar, "LEFT", 4, 0 )
Immediately after them, add this additional line:
Code:
			self.Castbar.Text:SetPoint( "RIGHT", self.Castbar, "RIGHT", -4, 0 )
Report comment to moderator  
Reply With Quote
Unread 02-12-12, 09:35 PM  
L3n1n
A Fallenroot Satyr
 
L3n1n's Avatar
AddOn Author - Click to view AddOns

Forum posts: 20
File comments: 86
Uploads: 2
Phanx, thank you.
I have two problems:
1. interruptible cast is no different from the uninterruptible cast.
2. сastbar text extends beyond the frame

Report comment to moderator  
Reply With Quote
Unread 02-08-12, 07:42 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
I'm sure I've already posted about that somewhere in the comments, but WoWI still doesn't have any comment search function (nor any way to link to a specific comment) so:

1. Open core.lua in Notepad.

2. Find this line:
Code:
self.Debuffs.CustomFilter   = ns.CustomAuraFilters.target
3. Add two dashes at the front of it:
Code:
--self.Debuffs.CustomFilter   = ns.CustomAuraFilters.target
4. Find this line:
Code:
self.Buffs.CustomFilter   = ns.CustomAuraFilters.target
5. Add two dashes at the front of it:
Code:
--self.Buffs.CustomFilter   = ns.CustomAuraFilters.target
6. Save the file.

7. "/console reloadui" in WoW if you were already logged in.
Last edited by Phanx : 02-08-12 at 07:44 PM.
Report comment to moderator  
Reply With Quote
Unread 02-07-12, 07:26 PM  
L3n1n
A Fallenroot Satyr
 
L3n1n's Avatar
AddOn Author - Click to view AddOns

Forum posts: 20
File comments: 86
Uploads: 2
I really like your ouf layout. But how to do so you can see all buffs and debuffs on the target (based on default unitframes)?

Report comment to moderator  
Reply With Quote
Unread 02-03-12, 12:46 AM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
1. Open config.lua in Notepad.

2. Add the line in bold yellow text:
Code:
	focus = {
		point = "TOPLEFT target BOTTOMLEFT 0 -60",
		power = true,
		castbar = true,
	},
Report comment to moderator  
Reply With Quote
Unread 01-30-12, 06:15 PM  
Beef.
Guest

Join Date: Not Yet
Forum posts: 0
File comments: 0
Uploads: 0
Is there an option to enable the focus cast bar

Thanks!
Report comment to moderator  
Edit/Delete Message Reply With Quote
Unread 01-01-12, 11:32 AM  
Jonisaurus
An Aku'mai Servant
 
Jonisaurus's Avatar

Forum posts: 35
File comments: 6
Uploads: 0
Originally Posted by Phanx
Use Reflux.
Thanks.

One other thing.

EDIT: Solved it on my own, I was just too stupid to see it.
Last edited by Jonisaurus : 01-01-12 at 11:44 AM.
Report comment to moderator  
Reply With Quote
Unread 01-01-12, 06:35 AM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Use Reflux.
Report comment to moderator  
Reply With Quote
Unread 01-01-12, 04:23 AM  
Jonisaurus
An Aku'mai Servant
 
Jonisaurus's Avatar

Forum posts: 35
File comments: 6
Uploads: 0
Can you somehow setup profiles?

I'd like to use your setup (positions mostly) for PvP, but would like to get everything out of the way for PvE. Any way to do this?

(btw great looking addon)
Last edited by Jonisaurus : 01-01-12 at 04:23 AM.
Report comment to moderator  
Reply With Quote
Unread 12-28-11, 11:42 AM  
chenyuli
A Kobold Labourer
 
chenyuli's Avatar

Forum posts: 0
File comments: 29
Uploads: 0
Re: target frame aura

Hi, I've noticed two problems comeback again.

Originally Posted by chenyuli
Hi, recently I found Druid's Rejuvenation, Lifebloom and Regrowth on target frame can't display in the same time. When I cast these 3 spells on target frame, it only display the first spell, and the later spell has to wait for previous spell expired. (But player & party frame doesn't have this problem.)

Another problem is player unit's border in party frame will not display highlight when player having debuff. Other members' border in party frame will highlight when they having debuff, but player's won't.
Report comment to moderator  
Reply With Quote
Unread 12-26-11, 12:05 PM  
chenyuli
A Kobold Labourer
 
chenyuli's Avatar

Forum posts: 0
File comments: 29
Uploads: 0
Thanks

Now It works perfectly! Thank you!!
Report comment to moderator  
Reply With Quote
Unread 12-23-11, 02:52 AM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

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

I just need the lines for any buffs/debuffs that aren't showing up correctly. Usually this happens because Blizzard changed the spell ID, or because I made a typo in the spell ID.

Anyway, you should see a new version up shortly. Let me know if any buffs or debuffs are still missing.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: