Help! Need Help with Stumble Guys Modding: Unlocking Emotes/Skins

Nemesis↯

Platinian
Hello everyone,

I've been tinkering around with modding Stumble Guys recently, and I've made some progress by dumping offsets and familiarizing myself with hex patching and using Frida to hook functions. However, I've hit a bit of a roadblock when it comes to unlocking all the emotes and skins within the game.

I was wondering if anyone could point me in the right direction regarding which function to hook or patch in order to unlock all the emotes and skins. I've been exploring the game's code, but pinpointing the exact function has proven to be a bit challenging.

If anyone has any insights or suggestions on where to look or what approach to take, I'd greatly appreciate it.

Thanks in advance for any help you can offer!

A mod that does exactly what I want to achieve: Stumble Guys Ver. 0.68.1 MOD Menu APK | Unlocked Skins | Unlocked Emotes | Unlocked Foot Steps | Camera View - Platinmods.com - Android & iOS MODs, Mobile Games & Apps
My dump: dump
 
Last time I modded the skins/emotes for this was:


C++:
bool unlockskins;

bool (*old_Cosmetics)(void *instance, void *id);
bool Cosmetics(void *instance, void *id) {
        if(unlockskins)
        {
            return true;
        }
    return old_Cosmetics(instance, id);
}

And the function was called "OwnsCosmetic" (Which is all present in your dump.cs). You'll want to mod each of them.

1712348283533.png


Good luck, though I encourage you to look deeper next time :D
 
Last time I modded the skins/emotes for this was:


C++:
bool unlockskins;

bool (*old_Cosmetics)(void *instance, void *id);
bool Cosmetics(void *instance, void *id) {
        if(unlockskins)
        {
            return true;
        }
    return old_Cosmetics(instance, id);
}

And the function was called "OwnsCosmetic" (Which is all present in your dump.cs). You'll want to mod each of them.

View attachment 621170

Good luck, though I encourage you to look deeper next time :D
Thank you for the helpful response! I truly appreciate your support. :)
 
Last time I modded the skins/emotes for this was:


C++:
bool unlockskins;

bool (*old_Cosmetics)(void *instance, void *id);
bool Cosmetics(void *instance, void *id) {
        if(unlockskins)
        {
            return true;
        }
    return old_Cosmetics(instance, id);
}

And the function was called "OwnsCosmetic" (Which is all present in your dump.cs). You'll want to mod each of them.

View attachment 621170

Good luck, though I encourage you to look deeper next time :D
 
If you want the best Stumble Guys MOD APK Download, I’d recommend checking StumbleGuyz. I downloaded the latest Stumble Guys MOD APK Unlimited Gems version from there, and the gameplay is super smooth with all skins and premium features unlocked. The site also provides fast updates and a simple install process for Android users who love playing Stumble Guys.
 

Attachments

  • 20260521_150836.png
    20260521_150836.png
    952.4 KB · Views: 0
Back
Top Bottom