Recent content by Galaxy169

  1. AWAITING UPDATE 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.