barrett777 / Heroes.ReplayParser

A C# library for parsing Heroes of the Storm replay files (.StormReplay)
MIT License
223 stars 95 forks source link

Kills, assists and deaths as doubles #54

Closed mathiasgsk closed 7 years ago

mathiasgsk commented 7 years ago

Hello!

After using your library quite a lot, I came across replays involving Murky. Killing Murky only yields a quarter of a kill, and thus it takes four Murky kills for a complete takedown.

Is it possible to retrieve the number of kills, assists and deaths as doubles instead of integers, as it is shown in the in-game stats-board? This would allow more detailed analysis and insight.

barrett777 commented 7 years ago

These are unfortunately recorded in the replay file as integers, despite being shown in the in-game score screen with 0.25 kills and deaths for things

If Blizzard changes the replay format, I'll update this library and Hotslogs code

Until then, you could try to calculate it yourself by finding the Murky hero units and counting their deaths yourself, etc. Calculating assists would be harder though.