Recent content by Hiyall360

  1. Solved How To Fix This Hook

    UnityEngine is the namespace, Camera is the class name. what you did wrong: putting the namespace with the class name, where only the class should be. See that first set of empty quotes you have in your LoadClass function? That needs to have your namespace. Your second parameter needs to only...
  2. Not Working School of Chaos Classic APK MOD Menu | God Mode | Unlimited Condititon | Calories | +More

    The developers of the game shut down the servers for everyone already, that is why this does not work.
  3. Not Working School of Chaos Classic APK MOD Menu | God Mode | Unlimited Condititon | Calories | +More

    The developers shut down the server for this game, it is dead.
  4. Source Bullet Force Menu SRC (Project Venium)

    Always doing sick shit bruv 😁👍
  5. Help! Bypass Anti-cheat/root

    give the Shamiko module a try, bypasses most games. You basically just install the module, and use Magisks deny-list, but do NOT enforce it. (Shamiko just uses the list from it) add your game to that list.
  6. Discussion Login signed apk in google play

    PGSharp has a blog post with a whole analysis of their cheat. I would post the link here, but I'm not sure that's allowed. You can easily find it on google though. Credit: Romain Thomas PGSharp: Analysis of a Cheating App for PokemonGO.
  7. 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...
  8. 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)...
  9. 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.
  10. 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!
  11. 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.
  12. 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...
  13. 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?
  14. Help! I know u not working on anti Cheats 🙈

    It would help a lot if you mention which game has this anticheat.
Back
Top Bottom