saul / demofile-net

Blazing fast cross-platform demo parser library for Counter-Strike 2 and Valve's Deadlock, written in C#.
MIT License
96 stars 8 forks source link

Can I get player profile picture? #55

Closed brago671 closed 5 months ago

brago671 commented 5 months ago

I have a need in getting player pictures. Can i get those via DemoParser? I can use Steam API and SteamID from parser but would be easier if they are already parsed.

I realy like the library. Great work

saul commented 5 months ago

You can get the players 64-bit Steam ID with CCSPlayerController.PlayerInfo.Steamid. Once you have that, you can pull the avatar URL with Steam's web APIs: https://developer.valvesoftware.com/wiki/Steam_Web_API#GetPlayerSummaries_.28v0002.29

Hope that helps