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

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