Open Paxoo opened 4 years ago
So, a demo file from 2018 is working but not one demo from 2020. Does someone has the same problem?
I have the same issue using a FACEIT demo
Tried looping over each tick and calling ParseToEnd. Still looking at this.
This was fixed in https://github.com/StatsHelix/demoinfo/commit/2412dac4c2f6ecc962ef60b8585d2b58273facee. However for some reason not a release has been published since that adds this fix to the github or nuget releases.
Hi, thanks for your answer! Sadly I can't manage to create a working build of the libraries latest versions. Strangly I have the same problems described here a few years ago: https://github.com/StatsHelix/demoinfo/issues/107#issuecomment-233185667
I can use the nuget version without encountering this problem but the parser.ParseToEnd();
function is not implemented there.
Do you know how to build the latest version?
Hi, shortly after I posted, I managed to get this working. I can't remember the solution exactly but AronParker is 100% correct. You can't get the NuGet current version to work. Go download the repos manually and do not use NuGet! :)
akiver commented on 8 Dec 2018 Hi, since the 2018.12.06 update it looks like demos now contain int64. This PR handle int64 decoding based on the original demoinfogo code.
Wow thanks for your quick answer! Sadly the newest version here on github does not work for me either, whenever I try to start a program implementing the library I get this error implying that some reference or so is missing:
Additional information: Could not load file or assembly DemoInfo, Version=1.0.0.0, Culture=neutral, PublicKeyToken=dc7de83c756ec63d" or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
Do you have a working proof of concept or do you remember how you set up a project without nuget? Thank you for your help!
Try disabling signed assembly when building.
I can try give you a hand and get it working if you add me on Discord @ brandonsuperstar#2479
Thank you very much for the offer! I sent you a friend request
@master117 thank you very much for your help! Turning off signed assembly worked perfectly!
@JKamue You're welcome, glad I could help.
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 Methode oder der Vorgang ist nicht implementiert. Quelle = DemoInfo Stapelüberwachung: bei DemoInfo.DP.Handler.PacketEntitesHandler.PropertyCollector..ctor(Entity underlying, IList`1 capture) bei DemoInfo.DP.Handler.PacketEntitesHandler.ReadEnterPVS(IBitStream reader, Int32 id, DemoParser parser) bei DemoInfo.DP.Handler.PacketEntitesHandler.Apply(PacketEntities packetEntities, IBitStream reader, DemoParser parser) bei DemoInfo.PacketEntities.Parse(IBitStream bitstream, DemoParser parser) bei DemoInfo.DP.DemoPacketParser.ParsePacket(IBitStream bitstream, DemoParser demo) bei DemoInfo.DemoParser.ParseDemoPacket() bei DemoInfo.DemoParser.ParseTick() bei DemoInfo.DemoParser.ParseNextTick() bei DemoInfo.DemoParser.ParseToEnd() bei TEst.Program.Main(String[] args) in C:\Users\Pati\source\repos\TEst\Program.cs: Zeile21
I´ve installed DemoInfo with the following instructions: https://github.com/StatsHelix/demoinfo/issues/107#issuecomment-234206846
code:
parser.ParseHeader(); is working fine, I can use parser.Map for example parser.ParseToEnd(); is not implemented?