Thread Tools Display Modes
02-13-10, 09:00 PM   #1
kittiechan
A Deviate Faerie Dragon
AddOn Author - Click to view addons
Join Date: Apr 2009
Posts: 16
Aura's on target cast by player

Is there a way to turn these off? Via slash command or by setting their alpha to 0 in a lua file somewhere? I ask because I like the candy bar type indicators for this and have placed my forte xorcist bars right over these auras. I'm sort of nitpicky about having things show through those bars. In that regard I would also like to be able to "turn off" the distance to target range that is just below the player auras on target.

I don't want to start experimenting and break nUI completely. Thanks in advance
 
02-13-10, 10:46 PM   #2
marioinfinity
A Black Drake
 
marioinfinity's Avatar
Join Date: Sep 2009
Posts: 73
here's the command

/nui maxauras 0


Will turn it off completly. Just make sure you dont fiddle with the options in the

Interface > Addons > General > Aura's

Otherwise it will change and you will need to use the command again..

__________________
:: Peanut Butter :: Jelly Time ::
 
02-13-10, 11:03 PM   #3
kittiechan
A Deviate Faerie Dragon
AddOn Author - Click to view addons
Join Date: Apr 2009
Posts: 16
That wasn't exactly what I was going for. I just wanted to disable the auras that appear just below my cast bar.

Basically, I want to see my full buffs and the target's full debuffs in the lower left/right, but in the center where it shows the debuffs only my character has applied, I want that clear (the area just below my cast bar and above the cooldown timers).

Sorry for the confusion, should have been more specific with what i wanted turned off.
 
02-13-10, 11:15 PM   #4
marioinfinity
A Black Drake
 
marioinfinity's Avatar
Join Date: Sep 2009
Posts: 73
Okay.. I'm confused..

The only aura's i know that NUI places on the target; is directly below the cast bar; direct center of the HUD (if its enabled).

See the Red Circle: [druids can generate a lot so figured this might help figure it out - i have myself targeted; buffed and hotted.. to show the icons below the cast bar]



the command i listed turns those off from displaying completely.. so your target wont show those icons..

The only other "Aura's" i know of on the screen are your buff bar on the left hand corner and the targets buff bar on the right hand corner; above the nui frame.. if you want to turn those off i'd assume it'd have to be a lua edit..
__________________
:: Peanut Butter :: Jelly Time ::
 
02-13-10, 11:21 PM   #5
marioinfinity
A Black Drake
 
marioinfinity's Avatar
Join Date: Sep 2009
Posts: 73
Oh AND the cooldown icons can be turned off here:

Interface > Addons > NUI > HUD > Cooldown > "Bar" Check mark

Though if you play without the HUD that doesn't matter.

__________________
:: Peanut Butter :: Jelly Time ::
 
02-13-10, 11:38 PM   #6
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
I'm sure the /nui maxauras 0 turns off both the side aura bars and the hud auras. But I'm not sure it turns off the cooldowns or your target debuffs under the cast bar.

Ah think this would be it if you don't use the UI plugin. /nui hud cooldowns I think will toggle the cooldown display.

However, the debuffs you cast I think can only be disabled via editing the appropriate hud layout file for the target. EG. for the PlayerTarget hud you would go to folder nUI\Layouts\Default\HUDLayouts\PlayerTarget and edit the file nUI_HUDSkin_PlayerTarget_Target.lua and the section of code below is round about line 548. The enabled flag there should turn it off and on. I'm sure Scott will point out if its the wrong file or not.

Code:
			[2] =	-- debuffs
			{
				anchor =
				{
					anchor_pt   = "BOTTOM",
					relative_to = nUI_HUDLAYOUT_PLAYERTARGET.."Bottom",
					relative_pt = "TOP",
					xOfs        = 0,
					yOfs        = 80,
				},		
				options =
				{
					enabled = true,
					size    = 40,
					strata  = nil,
					level   = 1,
					
					aura_type        = "help",
					origin           = "TOPLEFT",
					player_auras     = true,
					dispellable      = false,
					horizontal       = true,
					dynamic_size     = true,
					highlight_player = false,
					aura_types       = false,
					cooldown_anim    = false,
					flash_expire     = true,
					rows             = 1,
					cols             = 10,
					expire_time      = 10,
					hGap             = 5,
					vGap             = 20,
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
02-13-10, 11:44 PM   #7
marioinfinity
A Black Drake
 
marioinfinity's Avatar
Join Date: Sep 2009
Posts: 73
just tested with moonfire

/nui maxauras 0

turns off debuffs

the only way i know to turn off cd's which display under the aura bar; is with the hud option in the interface menu [works with all cd's; my shadowmeld, wildgrowth and trinket cds turned off when i unchecked that option!]

:P

oOo i a mere newb > xkrystal

woot for meeee
__________________
:: Peanut Butter :: Jelly Time ::
 
02-14-10, 12:08 AM   #8
kittiechan
A Deviate Faerie Dragon
AddOn Author - Click to view addons
Join Date: Apr 2009
Posts: 16
The command you listed will shut off the auras circled in blue, which I don't want. You can see the deadly poison stack behind my addon bars (circled in black). Those are the auras I want to turn off if possible.

Since I only use forte to track a select few buffs/debuffs, turning off all my other auras would be problematic. I've been looking through a few of the lua files trying to figure out if I can change something to enabled=false or a=0 but there's a lot going on....
Attached Thumbnails
Click image for larger version

Name:	auras.jpg
Views:	642
Size:	189.9 KB
ID:	3969  
 
02-14-10, 12:10 AM   #9
kittiechan
A Deviate Faerie Dragon
AddOn Author - Click to view addons
Join Date: Apr 2009
Posts: 16
I think Xrystal pointed me in the right direction actually Gonna find that code and see what changes if anything.

*EDIT* Switching that to false did the trick. I was close too, was looking at auras in unitpanels though, not hudlayouts haha. Now I realize changing auras there would only affect the dashboard units.

Thanks for helping me out everyone Appreciate it

Last edited by kittiechan : 02-14-10 at 12:24 AM. Reason: problem solved
 
02-14-10, 01:09 AM   #10
marioinfinity
A Black Drake
 
marioinfinity's Avatar
Join Date: Sep 2009
Posts: 73
the hud option in the nui/addons area does do the same thing as editing it

but glad u got it to work to your desire
__________________
:: Peanut Butter :: Jelly Time ::
 
02-14-10, 03:20 AM   #11
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
rofl, I see you did the same thing I used to do with the micro menu and rearrnage the layout of each part of it to make it take up less space
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
02-14-10, 02:10 PM   #12
kittiechan
A Deviate Faerie Dragon
AddOn Author - Click to view addons
Join Date: Apr 2009
Posts: 16
Hehe yea, I got that from you
 
 

WoWInterface » Featured Projects » nUI, MozzFullWorldMap and PartySpotter » Support » nUI: Technical Support » Aura's on target cast by player


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off