Search results

  1. FREE MOD Extreme SUV Driving Simulator V6.0.2 Mod Menu | High Car Speed | Disable Traffic | Car Selector | Spawn Car | Add Gold | Remove Ads |

    Playstore Link: Extreme SUV Driving Simulator - Apps on Google Play Game Name: Extreme SUV Driving Simulator Game Version: 6.0.2 Needs OBB: No Needs Root: No *MOD Features* Mod Menu: High Car Speed High Car Speed 2 Disable Traffic Car Selector Spawn Selected Car Add 100000 Gold Remove Ads...
  2. FREE MOD Shadow Fight 2 Special Edition V1.0.12 Mod Menu | God Mod | Dumb AI | Unlimited Coins | Unlimited Gems | Player Level |

    Playstore Link: Shadow Fight 2 Special Edition - Apps on Google Play Game Name: Shadow Fight 2 Special Edition Game Version: 1.0.12 Needs OBB: No Needs Root: No *MOD Features* Mod Menu: God Mod Dumb AI Unlimited Coins Unlimited Gems Player Level 0_99 *MOD Preview* *How to install...
  3. FREE MOD Rowdy Wrestling v1.1.7 Mod Apk | Unlimited Coins

    Playstore Link: https://play.google.com/store/apps/details?id=com.stencyl.rowdywrestling Game Name: Rowdy Wrestling Game Version: 1.1.7 Needs OBB: No Needs Root: No *MOD Features* 1. Unlimited Coins *How to install (click the spoilers to read)* Free Download: Hidden content...
  4. Help! Crash game

    I think you forgot to split your function pointer.
  5. Tool Il2CppDumper GUI Tool (Windows)

    Most likely metadata file is encrypted or the developer hide the correct file, try using game guardian to dump the files from memory.
  6. Tool Il2CppDumper GUI Tool (Windows)

    python3 script is freezing the IDA, script generated from Il2CppInspector is working fine.
  7. Help! LGL Mod Menu: the Button crashes the game

    For some reason, the Button on LGL Mod Menu always crash the game when used, I've tested it on different games and the same crash is happening on every games. Changing Button to Toggle doesn't crash the game so the hook is correct. The logcat indicated the game crashed due to loading too many...
  8. Help! Finding offsets

    It's code stage anti-cheat, just NOP and BL XR all methods you can find related to code stage anti-cheat, usually, methods starting with "On" such as "OnCheatingDetected" will do the trick.
  9. Help! About Button Hook - LGLTeam Android Mod Menu

    Remove curly brackets "{}" from the switch statements. case 1: if (btnAddIntButton != NULL) AddIntButtonMethod1(btnAddIntButton, 500); break;
  10. Tutorial How to use Auto-Il2CppDumper to dump protected Il2Cpp games (NO magisk/zygisk)

    Does it work on game with Beebyte obfuscator? I know deobfuscation is not possible but can it at least remove the fake methods and classes?
  11. Help! How to mod Struct member ?

    This is what I found in the dump You can use these field as instance to access the struct, *rest of the hooking code* void *ZoomParams = *(void**)((uint64_t)instance + 0x48); // Pointer to ZoomParams if(ZoomParams){ // Check if it's not null *(float*)((uint64_t)ZoomParams...
  12. Help! How to mod Struct member ?

    I think that method will work as a pointer to the struct, if not then try to find an instance for the pointer to access that struct.
  13. Solved How to mod libil2cpp.so when its returning double?

    You can use this website to Floating Point to Hex Converter to convert Double & Float to Hex. It could be possible the function you are modifying has much more going inside it, skipping the whole code using bx lr will break the function and cause problems. In this case, Hook the function, or...
  14. Solved Changing Game Object Scale

    I was hooking the wrong localScale, fixed it and now I can modify the scale of the objects. Edit: admins, lock this thread as my problem is solved.
  15. Solved Changing Game Object Scale

    Already tried both methods, none of them worked so far. Hooked at least a hundred methods and none of them worked, The game either crash or nothing gets changed. Wouldn't you mind if I send you my main.cpp for checking, I just want to know if I am hooking it correctly so I can continue my hunt...
  16. Solved Can I share modded savefile on Platinmods?

    Even if it falls, it already creates the smali and archived files which is enough to manually implement it on the apk yourself.
  17. Solved Can I share modded savefile on Platinmods?

    It's SaveToGame, you can download it from the GitHub.
  18. Solved Can I share modded savefile on Platinmods?

    There is a tool that embeds save data to the apk and extract it at the first launch. Also, you can save archived files in app assets folder and then write a simple code in java to unzip them when you run the app. Use the android studio to compile the app then decompile it using apktool to get...
  19. Tutorial How to make a Floatable Mod Menu [Team LGL] - {Beginners Tutorial} {All Explained} - Part 3

    Yeah, I've figured it out right after posting it. was confusing it with the seekbar.
  20. Tutorial How to make a Floatable Mod Menu [Team LGL] - {Beginners Tutorial} {All Explained} - Part 3

    Nice, Also do you know how to connect spinner to the hook?
  21. Solved Changing Game Object Scale

    So, in a game, I want to change the weapon or character model size so I can see the opponent easily. As usual, I edited every method and hooked fields that contain scale, weight, height, size and related keyword, none of them worked. I tried searching on the internet but didn't find anything...
  22. Tutorial Basic Hooking Tutorial

    Then use other methods available in the class i.e update, fixedupdate, etc... avoid using awake and start as they get called only once per object (unless you don't have any other choice).
  23. Tutorial How to make mod menu for il2cpp and native games

    Does LoadLibOnly only work for showing the toast message or it can also modify the game lib without the menu ui?
  24. Tutorial How to make mod menu for il2cpp and native games

    I'll try it. I am new to this. I already made the mod menu for a game using mrikso template. This one looks cool, also a bit complicated.