Search results

  1. Help! Can't install LGL Mod Menu

    Hi guys. Just got a new phone. ZTE Axon 40 Ultra (Android 13) Running my LGL project in AIDE works fine, it builds the lgl mod menu apk however I'm getting an error when trying to install it. "Invalid installation package" My last phone was a OnePlus 7 Pro (Android 10) it worked fine on...
  2. Solved Game is detecting lib file

    Hi guys, the game I'm modding is detecting my lib file... "lib/armeabi-v7a/libModz.so" It then puts me in offline room, does anyone know how to bypass this check that scans this folder for added lib.so files? Thanks
  3. Help! Game detects signed apk

    Hi guys, I've made a mod menu for a game and it works fine, the issue is, the game detects when the apk has been signed with a new signature (when it's not the original) and puts you in an offline room. Does anyone know a way around this? My phone is rooted if that helps, I tried the...
  4. Help! Hacks not working properly (arm64)

    Hi guys, I've been trying to update my lgl mod menu to arm64, everything works except for hex patching some methods. Example... #if defined(__aarch64__) //To compile this code for arm64 lib only. PATCH("0x600124", "00 00 80 D2 C0 03 5F D6"); Clearing the app data makes it work but...
  5. Solved Does anyone know how to create an object array?

    An il2cpp.System object array that holds primitive types such as int and float. If someone could explain how object arrays work and how to create one in C++ that would be great, cheers.
  6. Help! Is there a tool like DNSpy for Android?

    To decompile dll files... I don't currently have a computer, only my phone. Anyone know if such a tool exists for Android? Thanks.
  7. Help! Help with playerlist

    Hey guys, I have a playerlist but it only shows players names correctly with 6 or more characters in their nickname, players with 5 or less characters show as weird symbols, I think it has something to do with my monoString struct and the way it converts, but no idea how to fix. Any help...
  8. Help! How to hook a method with a parameter of PhotonMessageInfo?

    Hi, this is the method I'm trying to hook... void OnRequestRespawn(PhotonPlayer, PhotonMessageInfo) Previously it used to be like this... void OnRequestRespawn(PhotonPlayer) I was able to use it fine in the last update no problems, but now they've added this extra parameter and I've no clue...
  9. Help! Can't create a string

    I used to create strings in the previous version of the game I'm modding using this method... private unsafe string CreateString(sbyte* value) { return null; } But in the latest update they seem to have removed it so now all the createstring methods have multiple parameters. Like...
  10. Help! Hide Online v4.9.6

    Hello everyone, I've made my modded apk but this game has signature check and I can't join any rooms because of it. Does anyone know how to bypass the signature check? I've seen in some other APK mods they used something called KillSignV2...
  11. Help! How to bypass signature check?

    Game: Hide Online They've added a more annoying signature check in the latest version, the app crashes even when using the unsigned apk method with root + core patcher.
  12. Help! What Il2CPP games do you mod?

    Are there any good multiplayer Il2CPP games out there? So far I've tried... - Hide Online - Chicken Gun - Among Us - 1v1 LOL
  13. Help! Does anyone know anything about Photon RPC?

    Looking to learn more about how RPC's work, I've searched everywhere online but can't find much on RPC hacks. There have been a few modders who have them in their menus but are reluctant to share any info. Willing to pay, thanks
  14. Help! Does anyone know how to hook this method?

    void RPC(void*, string, enum, params object[]) So far I've hooked it like this... void (*RPC)(void*, monoString*, int, void*); The part I'm struggling with is the last argument "params object[]" which looks like an object array? Not sure if this should be a void* or something else? So far...