demoinfo icon indicating copy to clipboard operation
demoinfo copied to clipboard

A library to analyze CS:GO demos in C#

Results 31 demoinfo issues
Sort by recently updated
recently updated
newest added

I'm trying to parse the .dems from https://www.hltv.org/matches/2350388/vitality-vs-natus-vincere-esl-pro-league-season-14 using a build from DemoInfo with signed assemblies disabled. However, the following code: `DemoParser parser = new DemoParser(File.OpenRead(args[0]));` `parser.ParseHeader();` causes the following...

When i install it with nuget.org its throw guns error but i see the nuget version is too old. Now im trying to install from github but it say it...

Hey everyone, I´m new to VisualStudio and C# and I´m getting an error message, which I hope you can help me with. **The error message:** System.NotImplementedException HResult=0x80004001 Nachricht = Die...

I getted players from DemoParser.Participants, then read their weapons data, and found players' Weapon data are wrong. for example, a player may have an ak47, an AWP, two smokes in...

I am trying to parse a faceit demo but I can't get it to work. I create a file stream, parser instance, and register my events. When it comes to...

Inside of DemoParser.cs: ``` SendTableParser.FindByName("CCSPlayerResource").OnNewEntity += (s1, newResource) => { newResource.Entity.FindProperty("m_hostageRescueX.000").DataRecivedDontUse += (s1, center) => ... ``` seems to get the X value for the center point of func_hostage_rescue entities...

This is not an issue itself, but thought I would post this. Unfortunately I am not well-versed enough in git to cherry-pick specific commits from this to PR into demoinfo,...

Adapted for use to: .Net Core 3.1 .Net Standard 2.0 .Net Framework 4.5 Thanks!

Hi, I was wondering how I could calculate a player's bone positions inside the parser and what properties I would need to do this. The only relevant thing I have...

I'm getting an exception when parsing [a particular demo](https://github.com/StatsHelix/demoinfo/files/2695346/demo.zip) in [GameEventHandler line 247](https://github.com/StatsHelix/demoinfo/blob/master/DemoInfo/DP/Handler/GameEventHandler.cs#L247) because the entityID is not found in the dictionary: `fireEndArgs.ThrownBy = parser.InfernoOwners[entityID];` The exception occurs on tick...