Quote Originally Posted by 'Bradster',index.php?page=Thread&postID=121826#pos t121826
Quote Originally Posted by 'Spatulor',index.php?page=Thread&postID=121808#pos t121808
Hey, can I get you to tell me what the mod is that shows your party member's outgoing damage? it looks like SCTD, but I can't get it to show anyone's damage but my own. thanks in advance
Wheatlord on this site taught me how to set it up like that. Here is his instructions which were spot on.

the addon is SCTD but u have to go to the SCTD.lua file and add a few lines.
1.find the line "local COMBATLOG_OBJECT_NONE = COMBATLOG_OBJECT_NONE" in SCTD.lua
2.put this UNDER it;


Source code
1
2
3
4
5
6
7
8

local COMBATLOG_FILTER_MINE = bit.bor (
COMBATLOG_OBJECT_AFFILIATION_PARTY,
COMBATLOG_OBJECT_AFFILIATION_MINE,
COMBATLOG_OBJECT_REACTION_FRIENDLY,
COMBATLOG_OBJECT_CONTROL_PLAYER,
COMBATLOG_OBJECT_TYPE_PLAYER,
COMBATLOG_OBJECT_TYPE_OBJECT
);



Now it shows the damage done of your whole party
Fantastic. Thank you.