-
Notifications
You must be signed in to change notification settings - Fork 36
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
"wine not supported" #407
Labels
bug
Unexpected behavior of Vinegar
Comments
strings RobloxPlayerLauncher.exe | grep -i wine
WinErr:
WINE32
wine_get_version Roblox Player check wine_get_version function. if we replace may works. sed -i "s/wine_get_version/none_get_version/g" RobloxPlayerLauncher.exe |
#include <windows.h>
#include <stdio.h>
int main(void)
{
static const char *(CDECL *pwine_get_version)(void);
HMODULE hntdll = GetModuleHandle("ntdll.dll");
if(!hntdll)
{
puts("Not running on NT.");
return 1;
}
pwine_get_version = (void *)GetProcAddress(hntdll, "wine_get_version");
if(pwine_get_version)
{
printf("Running on Wine... %s\n",pwine_get_version());
}
else
{
puts("did not detect Wine.");
}
return 0;
} |
Well, how did it go? |
ahh...if only it was this easy :) |
duuuuuuude undetected bypass 2024 legit working free |
roblox hyperion (10 mil invested) |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Acknowledgement of preliminary instructions
What problem did you encounter?
Player-2024-03-07T17:28:55-06:00.log
System information
No response
The text was updated successfully, but these errors were encountered: