
Originally Posted by
'Spekio',index.php?page=Thread&postID=52991#post52 991
I just tried the change and I'm loving it. The only problem is I don't see the party's pet damage. Any idea on what I can replace the pet damage line with to get the damage from all the pets in my party?
Try adding
COMBATLOG_OBJECT_TYPE_PET,
with the other modifications... should do the trick.
Although it might only show your mains pet... I don't know if it distinguishes pet ownership.
Your code would look 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_OBJECT_TYPE_PET,
);
Let me know which of these four things happened:
1) Works as intended.
2) Shows only my main's pet damage.
3) Shows everyone's pet's damage everywhere. (quite possible)
4) Divided by zero and now my computer has fallen into a black hole.
Connect With Us