Jump to content

How to easily connect on Google Play Games (WITH MOD APK)


3 posts in this topic

Recommended Posts

Updated (edited)

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:

 

image.png
 

Modify the 3 methods to true, and that's all, you're done with the hard google login 💞

Updated by L808
Updated the tutorial
  • Like 3
  • Winner 1
  • Haha 1
  • Agree 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines