This is the AMP version of this page.
If you want to load the real page instead, click this text.

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

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.

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);
}