Search results

  1. Help! Help hook class

    nevermind, the instance method worked. actually getting correct values now, not the typeinfo thing though.
  2. Help! Help hook class

    Hi, i want to change some static fields in my main class (typeinfo), so mainclass->static_fields->InstanceField->money = some_number; But apparently static_fields is null for some reason so i get a segfault error. I know the typeinfo address from il2cpp.json above. i just guessed my pointer...
  3. Help! Help hook class

    Hi, i'm making a mod for a simple android game (lgl mod menu). I hooked an update function, it's working ok, now i need to patch some static fields in the main class. I've tried 2 methods thus far: 1. Hook class directly from offset, I'm using the typeinfo method I have the header file for this...