Search results

  1. FREE MOD Death Adventure Ver. 0.1.1 MOD Menu APK | No Ads | God Mode | Damage Multiplier | Free Upgrades

    Playstore Link: https://play.google.com/store/apps/details?id=com.reaper.quest.death.adventure Game Name: Death Adventure Game Version: 0.1.1 Needs OBB: No Needs Root: No *MOD Features* 1. No Intrusive Ads (you still can opt to watch ads for bonus things) 2. God Mode 3. Damage Multiplier...
  2. FREE MOD Pocket Love Ver. 2.4 MOD Menu APK | Free Shopping

    Playstore Link: https://play.google.com/store/apps/details?id=com.hyperbeard.pocketlove Game Name: Pocket Love Game Version: 2.4 Needs OBB: No Needs Root: No *MOD Features* 1. Free Shopping (some items will still have price tags, but you can buy for free) *How to install (click the...
  3. FREE MOD BLEACH: Soul Reaper Ver. 1.2.30.75 MOD MENU APK | Battle Speed Multiplier |

    Playstore Link: https://play.google.com/store/apps/details?id=com.noctuagames.android.bleach.en Game Name: BLEACH: Soul Reaper Game Version: 1.2.30.75 Needs OBB: No Needs Root: No *MOD Features* 1. Battle Speed Multiplier (1-100) (KEEP BATTLE SPEED AT 1X IN THE BATTLE UI) (Doesn't work for...
  4. Help! Compiling APK with my mod menu lib files causes parsing error

    I haven't modded for a while, but I'm pretty sure I'm doing things the same way I used to. Any time I compile an APK with my mod menu .so files inside the lib directory, after aligning and signing, my emulator will not parse the APK. If I take them out, and recompile and sign again, it works...
  5. Help! Modding a seemingly unobfuscated, non-encrypted cocos game

    Upon inspecting the assets folder, I found the following javascript file: It seems to be using SystemJS to load modules from "chunks:///_virtual". I'm interested in seeing the code for these TypeScript files, so I can modify the game. However, they do not exist in the APK as far as I can tell...
  6. Solved Why does adding toggles to my collapse crash my game?

    This works: const char *features[] = { OBFUSCATE("Collapse_Add Currency"), //Not counted OBFUSCATE("CollapseAdd_SeekBar_Amount_1_1000000"), OBFUSCATE("CollapseAdd_Button_Add Nether"), OBFUSCATE("CollapseAdd_Button_Add Souls")...
  7. Outdated Fish Farm 3 - Aquarium v1.18.6.5.7180 MOD Menu APK | Set Coins | Set Cowries | Add Skill Points | Add XP

    Playstore Link: Fish Farm 3 - Aquarium - Apps on Google Play Game Name: Fish Farm 3 - Aquarium Game Version: 1.18.6.5.7180 Needs OBB: No Needs Root: No *MOD Features* MOD Menu Bank Account Set Coins Set Cowries Player Add Skill Points Add XP *How to install (click the spoilers to...
  8. FREE MOD School Girls Simulator v1.0 MOD Menu APK | Set Money | Set Health | Reset Hunger

    Playstore Link: School Girls Simulator - Apps on Google Play Game Name: School Girls Simulator Game Version: 1.0 Needs OBB: No Needs Root: No *MOD Features* Mod Menu Set Money Set Health Reset Hunger *How to install (click the spoilers to read)* Free Download: Hidden content...
  9. Outdated Jelly Knights: Idle RPG v1.0.03 MOD Menu APK | No Root Check | Add Currencies

    Playstore Link: Jelly Knights : Idle RPG - Apps on Google Play Game Name: Jelly Knights: Idle RPG Game Version: 1.0.03 Needs OBB: No Needs Root: No *MOD Features* No Root/Emulator Check Mod Menu Add Currency Amount Add Gems Add Prestige Add Soul Add Stone *How to install (click the...
  10. Outdated The Tank v1.1.1 MOD Menu APK | No Ads | Add Coins

    Playstore Link: The Tank - Apps on Google Play Game Name: Game Version: 1.1.1 Needs OBB: No Needs Root: No *MOD Features* No Ads Mod Menu Add 10k Coins *How to install (click the spoilers to read)* Free Download: Hidden content Tutorials: How to sign up and download on...
  11. Help! Getting the pointer of a static class?

    The unity game I'm modding has a class called MonoSingleton which contains a method get_Instance() which will return the instance of whatever type is passed through: I have used Il2CPPInspector to generate the following code: DO_APP_FUNC(0x00EE7014, PlayerDataManager *...
  12. Solved Storing address of a class, then using it later on crashes the game

    I've got a button on my menu to add 1k currency each time it is pressed: case 5: if(playerDataManager) { AddGem(playerDataManager, 1000, nullptr, nullptr); } break; To get `playerDataManager`, I hook the `Initialize` function...