Elitist Jerks
Register
Blogs
Forums


Go Back   Elitist Jerks » Public Discussion » User Interface and AddOns

Reply
 
LinkBack Thread Tools
Old 03/11/09, 5:10 PM   #1831
rENaitre
Von Kaiser
 
rENaitre's Avatar
 
Troll Rogue
 
Illidan
Originally Posted by Szynszyla View Post
I'm currently looking for mod to help me as raid leader to check if people are assisting properly the person who is set as main assist. The problem wouldn't exist if it was me as main assist couse than i could use xpearl assist box but it cant track whether people assist other person in the raid properly. Thx in advance.
One mod to see who's targetting what is TargetCheck. That might be close to what you're looking for too.

Offline
Reply With Quote
Old 03/11/09, 5:29 PM   #1832
Trevear
Von Kaiser
 
Trevear's Avatar
 
Night Elf Rogue
 
Elune
Originally Posted by Phorx View Post
I've seen a lot of people use WWS (wow web stats - Wow Web Stats) for a detailed breakdown of the fight and their DPS as well as other raid members. I'm sort of confused on how to get it working. I downloaded the client and made an account on that website, but i don't understand where the combat log is and how would I upload it. Does the client automatically create one.

I've read the "HELP" on their website but it doesn't give a detailed description on uploading a combat log.
No, WWS will not create combat logs: that is something the user does by either using the /LoggingCombat command in the chat frame or using a mod such as LoggerHead.

A file titled WoWCombatLog.txt will be created in:

1) Vista: C:\Users\Public\Games\World of Warcraft\Logs

2) XP: C:\Program Files\World of Warcraft\Logs.

And no, I'm not sure how to upload the logs: our guild switched from WWS to StasisCL last year.

Cheers.

"You think we're fly, but we levitate." - "Rockstar" by N.E.R.D.

Offline
Reply With Quote
Old 03/12/09, 11:49 AM   #1833
Allexisara
Glass Joe
 
Human Mage
 
Madoran
Originally Posted by Trevear View Post
I would recommend looking at compilations listed at sites like WoWInterface, Curse.com or Vranx's excellent website. Because honestly, you are not looking for help with a question this broad: you are looking for someone to hold your hand.

Cheers.
Not looking for hand-holding, just suggestions. But tyvm, never thought about looking at compilations b4. Sorry if my question was too broad, I like to cover my bases - sometimes a little too much. LOL

Offline
Reply With Quote
Old 03/14/09, 1:11 AM   #1834
Arcasial
Glass Joe
 
Orc Hunter
 
Shattered Hand
Currently using following add-ons to keep track of buffs/debuffs for raiding.

- ClassTimer, used to track my debuffs on the target, and mend pet. I like the bar display of debuffs and the player/target/pet/focus functionality, however, I do not like having player/target/pet in parentheses on the bars (thats what anchors are for). Also, ClassTimer seems to miss Call of the Wild, and I am unable to add it under extras.

- KHunterTimers, mostly used to show who the misdirection is on, and to track trap status (primed/aura/who is trapped). Really like seeing who is trapped, and for how long without having to target them, same goes for misdirection.

- SatrinaBuffFrame, currently using to show my raid buffs, debuffs, and important buffs on top of my frame.

I am basically looking for suggestions for an alternative to ClassTimer with similar functionality, and maybe a bit more customizable. Or any other suggestions as to what I can change to make my buffs/debuffs look better. I really like having a uniform look to my UI,my bars, my buttons etc and having three mods with different bars for buffs/debuffs makes my UI look incomplete. I want my buffs/debuffs to be on top and on the bottom of my Unitframes, respectively, and I want to keep the "bar" look while keeping all the bars looking the same.

Here is what the UI looks like:





Thanks for the help.

Offline
Reply With Quote
Old 03/14/09, 5:09 PM   #1835
blitzseed
Von Kaiser
 
blitzseed's Avatar
 
Human Death Knight
 
Anvilmar
Hello, does anyone know if there is a border texture for ButtonFacade ThinSquare that can be used in other addons like kgPanels and Quartz?

Last edited by blitzseed : 03/14/09 at 5:16 PM.

Offline
Reply With Quote
Old 03/16/09, 3:15 PM   #1836
Alexandre
Glass Joe
 
Tauren Druid
 
Ner'zhul (EU)
Ouf

Hi, so basically here is my UI i'm pretty proud about it even though i just took insiparation everywhere (Lyn, Wimpface etc).
I just need one final thing (until the next thing come up ).

Here is my UI.



I just want to change my warlock healthbar pet color. Maybe i didn't search/did well but i can't do it.

My unit frame are oUF_Fleetfoot who are themself based on oUF_Lyn. He added the debuff sorting on target (<3). I tweaked a little the .lua but i didn't find the pet color.

Will you help me ?
Thanks.

PS: I'm french sorry for the spelling.

Offline
Reply With Quote
Old 03/16/09, 3:48 PM   #1837
Trevear
Von Kaiser
 
Trevear's Avatar
 
Night Elf Rogue
 
Elune
I assume you mean the color of the Pet healthbar. If "Yes", then the answer is that that functionality is handled by oUF (i.e. not the layout) and the file is oUF\Elements\Health.LUA.

You can see within oUF_Fleetfoot that they specify some attributes for the healthbar:

	--
	-- healthbar functions
	--
	self.Health.colorTapping = true
	self.Health.colorDisconnected = true
	self.Health.colorClass = true
	self.Health.colorReaction = true
	self.Health.frequentUpdates = true
	self.PostUpdateHealth = PostUpdateHealth
These are for all frames unless changed within the definition of specific frames (i.e. Player, Target, Pet, et cetera). Specifically, within the Pet definition of frames there is this code:

		if(playerClass == "HUNTER") then
			self.Health.colorReaction = false
			self.Health.colorClass = false
			self.Health.colorHappiness = true
		end
Now you could something similar but with Warlock. The way I would go about it such:

		if(playerClass == "WARLOCK") then
			self.Health.colorReaction = false
			self.Health.colorClass = false
			self.Health.colorHappiness = false
                        self.Health.colorHealth = false
                        r = INSERT A NUMBER HERE
                        g = INSERT A NUMBER HERE
                        b = INSERT A NUMBER HERE 
                        self.SetStatusBarColor(r, g, b)
		end
Where the "INSERT A NUMBER HERE" are numbers based upon the RGB color scale.

In essence what you are doing is telling the Health element within oUF not to change the color and therefore you must set a color or it will simply use the default color of the statusbar used (which I believe is black: I don't have a .tga viewer on this laptop).

That should work.

Cheers.

"You think we're fly, but we levitate." - "Rockstar" by N.E.R.D.

Offline
Reply With Quote
Old 03/16/09, 6:01 PM   #1838
Alexandre
Glass Joe
 
Tauren Druid
 
Ner'zhul (EU)
Thank you

Thank you Trevear for this quick answer and all the explaining that i think i understood.

But like you said it "should had" work. I got this error when doing the change.



Here is the code. That's some random values I tried.

if(playerClass == "WARLOCK") then
self.Health.colorReaction = false
self.Health.colorClass = false
self.Health.colorHappiness = false
self.Health.colorHealth = false
r = .27
g = .59
b = .36
self.SetStatusBarColor(r, g, b)
end
Don't slap me.

Offline
Reply With Quote
Old 03/16/09, 6:46 PM   #1839
Trevear
Von Kaiser
 
Trevear's Avatar
 
Night Elf Rogue
 
Elune
Originally Posted by Alexandre View Post
...
I should have noticed, but the second to last line before the "end" should be self.Health.SetStatusBarColor(r, g, b): I forgot to add the child of the Parent "Self" that we are modifying. Hopefully that helps.

Oh and if you haven't already stumbled onto it, there is a great oUF layout discussion found here.

"You think we're fly, but we levitate." - "Rockstar" by N.E.R.D.

Offline
Reply With Quote
Old 03/16/09, 7:40 PM   #1840
Alexandre
Glass Joe
 
Tauren Druid
 
Ner'zhul (EU)
Re Thanks

I guess i should have seen that too. But it worked !!!.
Again, a quick answer thanks. I'll go see the thread to see what's going on there.

Now i just have too find the right color.

Offline
Reply With Quote
Old 03/17/09, 4:35 AM   #1841
yarikh
Von Kaiser
 
Dwarf Hunter
 
Argent Dawn
Hi, somewhere along the way my UI drop down menu got messed up. The error is something like: Interface\FrameXML\UIDropDownMenu.lua line ###, but I can't seem to find the file anywhere to see if I can manually repair it. Any advice? Thanks in advance.

Offline
Reply With Quote
Old 03/17/09, 10:28 PM   #1842
Riposte
Glass Joe
 
Riposte's Avatar
 
Night Elf Rogue
 
Blood Furnace
Error Messages everytime i log in

I'm am receiving error messages everytime I log in to WoW I receive Error messages from Auctionator when it is loading. My question is there a addon that i can get to atleast remove the WoW Error message box or is there something that I'm doing wrong.


Offline
Reply With Quote
Old 03/18/09, 3:48 AM   #1843
yarikh
Von Kaiser
 
Dwarf Hunter
 
Argent Dawn
Originally Posted by Riposte View Post
I'm am receiving error messages everytime I log in to WoW I receive Error messages from Auctionator when it is loading. My question is there a addon that i can get to atleast remove the WoW Error message box or is there something that I'm doing wrong.
Game Menu-->Interface-->Help-->Uncheck "Display lua errors"

Offline
Reply With Quote
Old 03/18/09, 10:45 AM   #1844
Alexandre
Glass Joe
 
Tauren Druid
 
Ner'zhul (EU)
Me again

Hey it's me and my oUF problem again.

Now that i manage to change the pet health bar color thanks to you maybe you will help me with another problem.
Maybe it's linked but since i changed the color liked you said every time i dismount my pet health bar color turns grey.
The only time it turn back to normal is with a reload ui. Even re-summoning it doesn't work.

Here is some screen.

Normal



Bug



I try to search in the wow interface thread with no luck.

Thank you.

EDIT: I noticed that even if my pet isn't summoned when i mount/dismount and summone him the bug is here too.

And since i'm on the subject here is an another question. How can i make the "background healthbar" of my pet, the same color as all the other UF wich are the same color but darker.

Shot



Tell me if i ask too much.

Last edited by Alexandre : 03/18/09 at 11:50 AM.

Offline
Reply With Quote
Old 03/18/09, 10:52 AM   #1845
Sirupsen
Glass Joe
 
Sirupsen's Avatar
 
Gnome Mage
 
Stormreaver (EU)
Originally Posted by yarikh View Post
Hi, somewhere along the way my UI drop down menu got messed up. The error is something like: Interface\FrameXML\UIDropDownMenu.lua line ###, but I can't seem to find the file anywhere to see if I can manually repair it. Any advice? Thanks in advance.
Are you using any addon which is monitering your Ui-scale?
I've had the same problem with the addon "aSettings" from ALZA's UI, by disabling the UI scale with just setting "--" before it.


Offline
Reply With Quote
Reply

Go Back   Elitist Jerks » Public Discussion » User Interface and AddOns

Thread Tools