Recent content by Hiyall360

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

    Last time I modded the skins/emotes for this was: 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...
  2. Solved How to hook Static int

    Static functions don't require instance bool isUpgrade = false int (*old_Gold)(); int Gold() { if (isUpgrade) { return 0; } return old_Gold(); } MSHookFunction((void *) getAbsoluteAddress("libil2cpp.so", 0x163D878), (void *) &Gold, (void **) &old_Gold)...
  3. Help! getting 0 health instead of infinite....

    Seems they've already solved their own problem a few posts above. It's nice seeing people overcoming their obstacles :)
  4. Tutorial DevX Mega Guide (OBB & Bundle Modding + More)

    I cover it + more on the Discord, which I can't share here, but should be easy to find if you're looking at the origin of the crack.
  5. Help! Assembly-CSharp.dll seems to be obfuscated, despite the game not using IL2CPP

    I havent looked into it, just wanted to quickly show you that you can use DevX to view/edit the Monobehaviors and etc of the bundles inside the ipa. I'll leave the exploring to you, good luck!
  6. Help! Assembly-CSharp.dll seems to be obfuscated, despite the game not using IL2CPP

    You can use DevX to mod this game, lots of things show. Check my thread on DevX for the download + some guides on how to use it.
  7. Tutorial Changing ImGui Font

    Want to pimp out your ImGui menus? ImGui handles fonts using a C style array, find your font in your project (it's usually Roboto_Regular) looks something like this: To add your own custom font, download a font file (I like to use dafont website) then go to: File to C style array converter...
  8. Help! Assembly-CSharp.dll seems to be obfuscated, despite the game not using IL2CPP

    Idk about Apple, but here's a 32 bit apk with il2cpp. Ill let you know if I have any luck with your ipa :)
  9. Help! Assembly-CSharp.dll seems to be obfuscated, despite the game not using IL2CPP

    il2cpp most definitely can apply to 32 bit games. what you're looking at is a mono game, and yes, devs can apply obfuscation to the assembly directly. Mind sending the .ipa?
  10. Help! I know u not working on anti Cheats 🙈

    It would help a lot if you mention which game has this anticheat.
  11. Solved Help to understand the logic of editing offsets

    These branch instructions are happening within the function (which dumps wont give you). You have to open the Assembly in IDA and analyze the function (as it will hold multiple instructions within) This "Branch" ( b #0x?????? ) is just skipping to another section of the instruction stack of the...
  12. Dump Standoff 2 C# Source Code

    https://platinmods.com/threads/devx-mega-guide-obb-bundle-modding-more.168002/
  13. Help! blade idle

    Perhaps, which game is this? When I search "Blade Idle" I see many different ones do you have the PlayStore link? edit: found it, will look into it sometime, and lol why is this game over 1gb? XD
  14. Help! Can i hook this function?

    You need to find an Update function to hook or find an instance that has access to that class, which you would know already if you started looking up "function pointers" as per my first reply.