Recent content by asdf101

  1. Tutorial How to find an Instance of a class to access pointers and static fields/methods

    What does the .bss mean. Can I just access the class instance by doing this: void *WeaponManager = GetRealOffset(0x06B268AC); I am not sure how all this works.
  2. Tutorial iOS Mod Menu Theos NIC Template - Create MM for iOS

    File not found. Please upload mod menu again
  3. Solved Problem with esp

    Solved Edit: I just put wrong color numbers
  4. Solved Another problem with esp

    I've managed to fix game crashes but my esp can't draw anything. Is there something with my device wrong or ESP.h doesn't find ESPView.java methods? Solved edit: I just put wrong color numbers
  5. Solved Problem with esp

    It is still not working. Im receiving null pointer dereference error. When I try to draw on canvas from native code the game crashes. Can you help me please.
  6. Solved Problem with esp

    Edit: My game does not crash anymore but I cant draw anything on canvas. I think the error is in some c++ jni methods.
  7. Solved Problem with esp

    --------- beginning of crash 08-01 22:46:10.201 30400 30425 E AndroidRuntime: FATAL EXCEPTION: UnityMain 08-01 22:46:10.201 30400 30425 E AndroidRuntime: Process: com.fingerlegend.hidenseek, PID: 30400 08-01 22:46:10.201 30400 30425 E AndroidRuntime: java.lang.Error: *** *** *** *** *** *** ***...
  8. Solved Problem with esp

    Greetings, I want to make esp hack for some il2cpp android game. I used this mod menu as a template. However when I call esp.DrawLine nothing happens or the game crashes. I have checked everything in my mod menu and I think the error is in this method. Any help appreciated.
  9. Help! Help with playerlist

    I tried to make a playerlist myself but is causes a huge amount of lag
  10. Help! Help with playerlist

    Im currently modding an online unity il2cpp game and Im trying to get a playerlist. But I don't know how to make a function pointer to it because it has a predicate<player> inside it. Any help appreciated. // RVA: 0x140D26C Offset: 0x140D26C VA: 0x140D26C public static List<RemotePlayer>...
  11. Tutorial How to hook arrays in Unity's Il2cpp

    In c# predicate class only returns boolean, true or false. Since it only returns that can you do this? monoList<void**> *(*GetPlayers)(bool) = (monoList<void**> *(*)(bool)) getAbsoluteAddress(targetLibName, offset);
  12. Tutorial How to hook arrays in Unity's Il2cpp

    Another question: I want to read c# list of strings // RVA: 0x140C528 Offset: 0x140C528 VA: 0x140C528 public static List<string> GetAllPlayersIdShuffled() { } Is this how I should do it? monoList<monoString> *(*GetPlayerIds)() = (monoList<monoString> *(*)())...
  13. Tutorial How to hook arrays in Unity's Il2cpp

    I mean how can you get the predicate<playerbase> because you need it in order for the hook to work correctly
  14. Tutorial How to hook arrays in Unity's Il2cpp

    Can you help me with List<>. I dont know how to hook that // RVA: 0x140D26C Offset: 0x140D26C VA: 0x140D26C public static List<RemotePlayer> GetRemotePlayers(Predicate<RemotePlayer> predicate) { }