combat log event for raid members?

combat log event for raid members?

by slipryy » Thu Mar 17, 2016 8:22 pm

CHAT_MSG_SPELL_PARTY_DAMAGE
is there a raid version of this for when you aren't in the same group as the people you're trying to "parse"?

CHAT_MSG_SPELL_FRIENDLYPLAYER_DAMAGE
doesnt work
slipryy
Senior Sergeant
Senior Sergeant
 

Re: combat log event for raid members?

by Andraxion » Sat Mar 19, 2016 3:13 am

"CHAT_MSG_SPELL_PARTY_DAMAGE" should encompass raid as there doesn't seem to be a constant for anything else.
Tinkleflower (PvE)
Andraxion's Addon Collection [Updated and refreshed]
Taking requests for backporting addons to 1.12, though I cannot give timeframes and I'm not currently undertaking very large projects.
User avatar
Andraxion
Grunt
Grunt
 

Re: combat log event for raid members?

by slipryy » Sat Mar 19, 2016 3:43 am

Andraxion wrote:"CHAT_MSG_SPELL_PARTY_DAMAGE" should encompass raid as there doesn't seem to be a constant for anything else.

it doesn't
slipryy
Senior Sergeant
Senior Sergeant
 

Re: combat log event for raid members?

by Renew » Sat Mar 19, 2016 8:42 am

why dont you take a look how other addons record events you want to check?

Recap for example:

Code: Select all
RecapCombatEvents:RegisterEvent("CHAT_MSG_COMBAT_CREATURE_VS_CREATURE_HITS")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_COMBAT_CREATURE_VS_CREATURE_MISSES")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_COMBAT_CREATURE_VS_PARTY_HITS")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_COMBAT_CREATURE_VS_SELF_HITS")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_COMBAT_CREATURE_VS_SELF_MISSES")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_COMBAT_FRIENDLYPLAYER_HITS")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_COMBAT_FRIENDLYPLAYER_MISSES")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_COMBAT_HOSTILEPLAYER_HITS")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_COMBAT_HOSTILEPLAYER_MISSES")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_COMBAT_PARTY_HITS")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_COMBAT_PARTY_MISSES")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_COMBAT_CREATURE_VS_PARTY_MISSES")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_COMBAT_PET_HITS")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_COMBAT_PET_MISSES")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_COMBAT_SELF_HITS")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_COMBAT_SELF_MISSES")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_CREATURE_VS_CREATURE_DAMAGE")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_CREATURE_VS_PARTY_DAMAGE")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_CREATURE_VS_SELF_DAMAGE")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_DAMAGESHIELDS_ON_OTHERS")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_DAMAGESHIELDS_ON_SELF")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_FRIENDLYPLAYER_DAMAGE")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_HOSTILEPLAYER_DAMAGE")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_PARTY_DAMAGE")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_PERIODIC_CREATURE_DAMAGE")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_PERIODIC_FRIENDLYPLAYER_DAMAGE")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_PERIODIC_HOSTILEPLAYER_DAMAGE")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_PERIODIC_PARTY_DAMAGE")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_PERIODIC_SELF_DAMAGE")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_PET_DAMAGE")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_SELF_DAMAGE")
my Addons:
- Vanilla Healing Assignments - /viewtopic.php?f=63&t=23326
- Vanilla Storyline -
User avatar
Renew
Senior Sergeant
Senior Sergeant
 

Re: combat log event for raid members?

by slipryy » Sat Mar 19, 2016 8:55 am

Code: Select all
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_FRIENDLYPLAYER_DAMAGE")
      RecapCombatEvents:RegisterEvent("CHAT_MSG_SPELL_PARTY_DAMAGE")

Are the only two combat events that would potentially work and neither do. I'm attempting to monitor the ability dodges of the tanks in group 1 of my raid but it only works if I'm in group 1 with them. I tried both those events in/out of raid etc and neither works.
slipryy
Senior Sergeant
Senior Sergeant
 

Re: combat log event for raid members?

by Renew » Sat Mar 19, 2016 9:11 am

tried CHAT_MSG_COMBAT_FRIENDLYPLAYER_MISSES ?

https://github.com/Zerf/SW_Stats-Vanill ... ultMap.lua

says

Code: Select all
      ["CHAT_MSG_COMBAT_FRIENDLYPLAYER_MISSES"] = {
         [1] = "VSPARRYOTHEROTHER",
         [2] = "MISSEDOTHEROTHER",
         [3] = "VSDODGEOTHEROTHER",
         [4] = "VSBLOCKOTHEROTHER",
         [5] = "VSABSORBOTHEROTHER",
         [6] = "VSIMMUNEOTHEROTHER",
         [7] = "VSEVADEOTHEROTHER",
my Addons:
- Vanilla Healing Assignments - /viewtopic.php?f=63&t=23326
- Vanilla Storyline -
User avatar
Renew
Senior Sergeant
Senior Sergeant
 

Re: combat log event for raid members?

by Geigerkind » Sat Mar 19, 2016 1:55 pm

Try:
CHAT_MSG_SPELL_HOSTILEPLAYER_DAMAGE
CHAT_MSG_SPELL_FRIENDLYPLAYER_DAMAGE
CHAT_MSG_COMBAT_FRIENDLYPLAYER_HITS
CHAT_MSG_COMBAT_FRIENDLYPLAYER_MISSES

Some events dont really do what their names say^^
My Addons:
DPSMate - A combat analyzation tool (/viewtopic.php?f=63&t=38042)
Vanilla Consolidated Buff-Frames (/viewtopic.php?f=63&t=18189)
Modified Power Auras (/viewtopic.php?f=63&t=18251)
User avatar
Geigerkind
Senior Sergeant
Senior Sergeant
 


Return to Addons & macros