Skada Damage Meter
Skada is a modular damage meter with various viewing modes, segmented fights and customizable windows. It aims to be highly efficient with memory and CPU.
"Skada" is Swedish for "Damage".
Usage
When you first start using Skada, there will be a window created by default. This window can be extensively customized in Skada's configuration panel; click the little cog icon to access a menu, and then click Configure. Depending on your user interface, there may also be a minimap button allowing quick access to this menu.
Skada supports multiple windows. To create a new window, click Windows in the addon's configuration panel. There are three built-in types of windows - Bar, Inline, and Data text. Bar is the classic damage meter window, and is very customizable. Inline shows the meter in a horizontal line, which can be useful for integration in custom user interfaces. Data text shows just one item at a time, and can also be displayed by any LDB display addon, such as Titan Panel, ChocolateBar, or ElvUI.
In the normal Bar window, you can left click on specific items for more detailed information, and right click for less details. At the very "top" is the list of all saved fight segments. Some data modes have several detailed information views. In this case you choose alternate views by holding certain keys pressed while clicking. For example, in Damage mode, you can Shift-click a player to see what enemies the player caused damage to. Tooltips will display how to reach the different views.
You can also use window buttons for selecting fight segment and mode directly.
Scrolling in Skada is done with the mousewheel.
Plugins
Skada is very easy to extend, and there are many extra plugin addons out there that add functionality, such as:
- Skada Graphs: Adds graph display systems to Skada
- Skada DPSplusHPS: Useful add-on for Disc Priests.
- Skada Chat Frame Integrator: Integrates Skada in any chat frame.
- SkadaScroll: Provides additional options for scrolling the bar displays
- Skada Avoidance and Mitigation: Helps tanks benchmark their damage reduction performance via avoidance and mitigation
- Skada for Tanks: Adds information useful for evaluating a tank's performance
- Guild Skada High Score: Let's you compare a guild's performance.
- Skada_FriendlyFire: Display friendly fire damage done by players
- Skada Player Score: Generate combined performance scores for players.
There is a page with API information here.
Reporting issues
Suggestions and bug reports here. Bug reports in comments will be deleted.
http://www.wowace.com/addons/skada/tickets/93-damage-healing-caused-by-pets-of-pets-of-pets/
I've applied this change to the most recent release of SKADA 1.2-29 successfully.
Repaste of code change for people too lazy to follow the above link:
1. Navigate to the following function in Skada.lua
function Skada:COMBAT_LOG_EVENT_UNFILTERED(event, timestamp, eventtype, srcGUID, srcName, srcFlags, dstGUID, dstName, dstFlags, ...)
2. Go to the end of the function, and find this:
if eventtype == 'SPELL_SUMMON' and band(srcFlags, RAID_FLAGS) ~= 0 then
pets[dstGUID] = {id = srcGUID, name = srcName
end
3. Change the code to look like this:
if eventtype == 'SPELL_SUMMON' and band(srcFlags, RAID_FLAGS) ~= 0 then
if pets[srcGUID] then
pets[dstGUID] = {id = pets[srcGUID].id, name = pets[srcGUID].name }
else
pets[dstGUID] = {id = srcGUID, name = srcName}
end
end
Any chance to getting a fix for shaman's fire ele totem being listed seperately on damage?
Edit: Got bored waiting for a reply, so looked into the code & fixed it myself. Skada.lua in FixPets() before "action.playername = pet.name" at the end of the function added: if (pets[pet.id]) then pet = pets[pet.id]; end
I use tiptac to relocate the tipanchor to topleft of screen - i can not get skada to recognize this location. It goes to bottom-right. If i change tiptac to mouseover anchor skada will anchor to that fine so it leads me to believe that there might be a setting in skada that sets default anchor position.
Any help would be appreciated.
Is there a way to black list certain healing spells, for example saurfang's Mark of the Fallen Champion?
Tinydps differs from Skada and Recount too - who is to tell wich one is the accurate?
On my S-priest i use Gnosis.. just isntalled it tonight... and Skada no longer functions... its weird.. no error msg's that i can see.. or pop up.. it just sits there.. and nothing ever shows up... no data is collected... I try and report data in skada.. and it gives me an error.. that the data is = to Nil..
I understand mods sometimes conflict.. and dont expecyt every mod to play nice... but just curious why or if there's a fix at all.. I dont wanna go back to recount.. rofl..
Is it because gnosis takes over the cast bar ??.. i tried "showing the blizzard cast bar".. and that didnt work either.
thanks again.
http://wow.curse.com/downloads/wow-addons/details/gnosis.aspx
I know it draws directly from the RAID_CLASS_COLORS but I don't know how to use LUA to pass it through an opacity filter to make it a different opacity.