Tutorial [Discontinued] Android mod menu template for il2cpp and native games

After Adding menu in my game when i am using Apk easy tool to recompile it...

compile failed read the log

W: ERROR: 'C:\Users\9999\AppData\Local\Temp\APKTOOL6162679857092145540.tmp' exists (use '-f' to force overwrite)
brut.directory.DirectoryException: java.util.zip.ZipException: zip file is empty
Hmm I don't know why
You can atleast report issue to apktool iBotPeaches/Apktool
 
Hi! I got the error: error: unknown type name 'Button_OnOff_God'.
I made a button with template in getFeaturelist and it can't find this type. What need I do?
 
@TheLGL
Hello, I have a huge doubt! How to start this function when clicking the button? I've tried and so far it doesn't work. :face02:

C++:
bool (*old_get_IsInvincible)(void *instance);

bool get_IsInvincible(void *instance) {
    if (instance != NULL && feature2) {
        LOGI("get_IsInvincible God Mod");
        return true;
    }
    //LOGI("get_IsInvincible");
    return old_get_IsInvincible(instance);
}
 
Back
Top Bottom