Answers for "how to get steam id c++"

C++
0

how to get steam id c++

#include <steamid.hpp>
...

// parse a Steam ID in "SteamID3" format.
SteamID steamid( "[U:1:108998443]", SteamID::Formats::STEAMID3 );

// print it in SteamID32 format
std::cout << steamid[ SteamID::Formats::STEAMID32 ];

// (prints "STEAM_1:1:54499221")
Posted by: Guest on March-10-2021

Browse Popular Code Answers by Language