I was wandering, cant you do somting like this? and jsut put all the names inn there:
Code:COMBATLOG_OBJECT_TYPE_PLAYER:(TOON1),
It wud be great :)
Printable View
I was wandering, cant you do somting like this? and jsut put all the names inn there:
Code:COMBATLOG_OBJECT_TYPE_PLAYER:(TOON1),
It wud be great :)
does this change make the blizzard numbers over the targets head include party damage or is it in the scrolling combat text visuals..... im trying to find a way to make the blizzard damage numbers include my whole party.
I don't think you can mess with the Blizzard UI components. You have to disable them and install this in their place. I'm not 100% sure though.
It's only the numbers displayed by SCTD.
this would be bloody imba tbh ^^ would light up th screen nicely ^^Quote:
Originally Posted by 'Sina',index.php?page=Thread&postID=93397#post9339 7
I just made the fix so I can see my party's damage-- which is awesome btw =) Only thing is that pet damage does not show up for the party. It would be nice to see that also. Anyone know a fix?
ok so i added the script to my sct.lua file and I fire up wow.
I make some UI changes and all I can see is healing totems and heals. No damage. Not even my mains damage shows up.
What is up?
You typo'd something. ;)
It's not in SCT.LUA, it's in SCTD.LUA.
Odd i cant see sctd in my interface option to mess with it. I see sct but no sctd. Clicked on addon to see what mod is in stalled its all checked ok, hmm. What u think i did wrong
I used the default sctd and now i have the option. But if i do the change in lua in stcd i dont have the sctd option in game did i modify it right. I have sct install already (newest one)Quote:
Originally Posted by The IT Monkey',index.php?page=Thread&postID=49699#post496 99]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[/code]
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
);[/code]
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 [url='http://www.wowinterface.com/downloads/dl.php?id=4913