Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

matchmaking functions are incomplete #73

Open
daki4 opened this issue May 9, 2022 · 1 comment
Open

matchmaking functions are incomplete #73

daki4 opened this issue May 9, 2022 · 1 comment
Assignees

Comments

@daki4
Copy link

daki4 commented May 9, 2022

So, I've been trying to migrate a program that tries to fetch game data for a given game ID from C++ to Python, but the following function is missing, and I dont know how to implement it in Python:

const char * GetLobbyData( CSteamID steamIDLobby, const char *pchKey );

which would allow me to fetch metadata about a specific lobby.

Currently, I have this as example C++ code:

		string version = SteamMatchmaking()->GetLobbyData(lobbyID, "version");
		string tags = SteamMatchmaking()->GetLobbyData(lobbyID, "tags");
		string name = SteamMatchmaking()->GetLobbyData(lobbyID, "name");
		string desc = SteamMatchmaking()->GetLobbyData(lobbyID, "desc");

But I can not find an equivalent function over here.

@philippj
Copy link
Owner

GetLobbyData is not yet implemented. I cant promise a date on when I will get to it, you may try to implement it yourself and afterwards do a PR.

@philippj philippj self-assigned this May 10, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants