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

getRawSteamID() returns wrong value #259

Open
astrocreep opened this issue Mar 2, 2020 · 0 comments
Open

getRawSteamID() returns wrong value #259

astrocreep opened this issue Mar 2, 2020 · 0 comments

Comments

@astrocreep
Copy link

And any other function that uses the greenworks_utils uint64ToString function.

The Raw Steam ID is basically the AccountID + 76561197960265728 The value returned by Greenworks looks more like a pointer or something and changes uppon every start. You can simply fix it by using

std::string uint64ToString(uint64 value) {
  return std::to_string(value);
}

instead of the provided one.

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

1 participant