Thursday, 13 October 2022

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

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! 😃

from iOSGods RSS Feed https://ift.tt/VfBonYL

No comments:

Post a Comment