-
Hello. I am using the https://github.com/pnxenopoulos/csgo package to parse the demo. The package is using this repository in order to get the demo parsed. This exports a very big json file. Is there a place where i can read the rank of the players? I search for keywords like "rank" or "Gold Nova" or "GN" but i didnt find anything. Is it possible to get it from the demo file? Best regards |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
👋 @AKaravas - unfortunately I'm unfamiliar with the format exported by But when using the Go library, the rank info should be available in the You can check the readme for how to capture events. Hope that helps 🙂 |
Beta Was this translation helpful? Give feedback.
👋 @AKaravas - unfortunately I'm unfamiliar with the format exported by
pnxenopoulos/csgo
.But when using the Go library, the rank info should be available in the
RankUpdate
event for MM demos: https://pkg.go.dev/github.com/markus-wa/demoinfocs-golang/[email protected]/pkg/demoinfocs/events#RankUpdateYou can check the readme for how to capture events.
Hope that helps 🙂