teel / stasiscl

Automatically exported from code.google.com/p/stasiscl
0 stars 0 forks source link

Casts and auras doesn't record direct heals #154

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Is there a way to get the Casts and Auras tab to show the number of casts of 
each direct healing spell? I'd like to know how many times I cast, for 
instance, Prayer of Healing or Flash Heal? The parses don't show this under 
the Casts and Auras tab, and 

The parses show the number of times it hits a target under the "Healing" tab, 
but I'd like to actually track the number of casts of direct heal spells, 
also. In the case of spells that hit multiple targets, such as Chain Heal or 
PoH, for instance.

It's a mixed bag -- Prayer of Mending and Penance casts show up, but Flash 
Heal and Prayer of Healing don't. Would be nice to track those.

Original issue reported on code.google.com by luca...@bellsouth.net on 15 Aug 2009 at 6:33

GoogleCodeExporter commented 8 years ago
In case instant spell, SPELL_CAST_SUCCESS is recorded when its casted. Then it 
is 
easy to count.

In case casting spell, SPELL_CAST_START is recorded when its started to cast, 
but 
SPELL_CAST_SUCCESS is not recorded when it lands, but each event is recorded 
for 
each spell. For examples, ENCHANT_APPLIED is recorded for Grand Spellstone by 
Warlock, SPELL_SUMMON is recorded for totems by Shaman, SPELL_HEAL is recorded 
for 
any healing spells. Then. it is necessary to make sure what spell records which 
event to count.

Original comment by odelle2004 on 1 Sep 2009 at 9:13