We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
How can i get fullClientGameVersion?
i need fullClientGameVersion
The text was updated successfully, but these errors were encountered:
check the pubg pc client version
Sorry, something went wrong.
how could we do that? i found only 'clientGameVersion' on PC client
import os import win32api def getFileVersion(file_name): info = win32api.GetFileVersionInfo(file_name, os.sep) ms = info['FileVersionMS'] ls = info['FileVersionLS'] version = '%d.%d.%d.%04d' % (win32api.HIWORD(ms), win32api.LOWORD(ms), win32api.HIWORD(ls), win32api.LOWORD(ls)) return version
This was the python function to get the fullClientGameVersion. @lemeshovich
No branches or pull requests
How can i get fullClientGameVersion?
i need fullClientGameVersion
The text was updated successfully, but these errors were encountered: