Hey All,
Did a bit of research today and noticed that SCTD has been updated for 2.4. So I did a little more digging and found what has to be changed to show the entire parties damage.

In the sctd.lua line 50 reads like this:
Code:
local COMBATLOG_FILTER_MINE = COMBATLOG_FILTER_MINE
Change it to read like this:
Code:
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
				);
COMBATLOG_FILTER_MINE is a WoW filter that usually only calls:
COMBATLOG_OBJECT_AFFILIATION_MINE,
COMBATLOG_OBJECT_REACTION_FRIENDLY,
COMBATLOG_OBJECT_CONTROL_PLAYER,
COMBATLOG_OBJECT_TYPE_PLAYER,
COMBATLOG_OBJECT_TYPE_OBJECT
I simply added
COMBATLOG_OBJECT_AFFILIATION_PARTY,
to the mix and it all went well.

I first tried just changing MINE to FRIENDLY_UNIT... but that was a DISASTER.

Hope you all enjoy.

-J (the IT Monkey)

Edit: Almost forgot... you can download SCTD here . <--Original file... not modified.