Hello it's SOUNDSBYLAITUE aka Pierre 😃
Today is a really special tutorial 😃
We will talk about how to connect on all Google Play Games (Unity)!
Keywords to search: authenticate, authenticated, is_authenticated, isauthenticated
It will be a really quick tutorial 😃
First, search the function with keywords!
Mine is IsAuthenticated, it's a simple bool, if the game thinks you're not authenticated, return a simple true! 😃
true in HEX is: 01 00 A0 E3 1E FF 2F E1 for modmenu the code would be:
//the void *instance is a self-created variable.
bool (*old_IsAuthenticated)(void *instance);
bool IsAuthenticated(void *instance) {
//Check if instance is NULL to prevent CRASH
if (instance != NULL) {
return true; //Return how many value
}
//return the original value (this code isn't really needed if you have a toggle/switch)
return old_IsAuthenticated(instance);
}
Quick tutorial, right?
Enjoy, HF! 😃
Hello, i have some good news about this tutorial, it have an update and i can show the exact method!
Search on the dump for this exact method name:
Modify the 3 methods to true, and that's all, you're done with the hard google login 💞