Recent content by libModz

  1. HOW TO HOOK FIELD OFFSETS WHICH DO NO HAVE UPDATE METHOD?

    Hmmm, not sure tbh. The code looks okay and works fine for me, weird.
  2. HOW TO HOOK FIELD OFFSETS WHICH DO NO HAVE UPDATE METHOD?

    Did you enter the correct offsets?
  3. HOW TO HOOK FIELD OFFSETS WHICH DO NO HAVE UPDATE METHOD?

    Then under hack_thread... Prop_set_Health = (void(*)(void*, int)) getAbsoluteAddress(targetLibName, 0xOFFSET); Prop_set_MaxHealth = (void(*)(void*, int)) getAbsoluteAddress(targetLibName, 0xOFFSET);
  4. HOW TO HOOK FIELD OFFSETS WHICH DO NO HAVE UPDATE METHOD?

    void (*Prop_set_Health)(void *instance, int value); void (*Prop_set_MaxHealth)(void *instance, int value); void (*old_PropControl_Update)(void *instance); void PropControl_Update(void *instance) { if(instance!=nullptr) { void *prop = *(void **) ((uint64_t) instance + 0x34); //...
  5. HOW TO HOOK FIELD OFFSETS WHICH DO NO HAVE UPDATE METHOD?

    In Hide Online, prop health (field offset) is obscured. You'd be better off hooking these methods instead... Prop_set_Health and Prop_set_MaxHealth
  6. Help! Can't install LGL Mod Menu

    I tried sdk version 29 and it worked. Thanks
  7. Help! libil2cpp.so game modding questions

    Telegram - libModz
  8. HOW TO HOOK FIELD OFFSETS WHICH DO NO HAVE UPDATE METHOD?

    Then you can hook fields from hunter class like this... void (*old_HunterControl_Update)(void *instance); void HunterControl_Update(void *instance) { if(instance!=nullptr) { void *hunter = *(void **) ((uint64_t) instance + 0x24); // HunterControl_hunter *(int *) ((uint64_t)...
  9. HOW TO HOOK FIELD OFFSETS WHICH DO NO HAVE UPDATE METHOD?

    Use HunterControl Update and PropControl Update. Hook hunter field offset instance from HunterControl class like this... void (*old_HunterControl_Update)(void *instance); void HunterControl_Update(void *instance) { if(instance!=nullptr) { void *hunter = *(void **) ((uint64_t)...
  10. Help! libil2cpp.so game modding questions

    You can't hex patch an int hex value to a void function like you have done here... private void SetHpLength(float length) { } To edit the float parameter in this function you need to hook it, not hex patch
  11. Help! Trouble Installing LGL Mod Menu on Android 14 - Seeking Solutions

    Sorry I use Aide not Android Studio so not sure about tutorial. You can try searching on here, as for the error you're getting I'm not sure what else to suggest. "App is not compatible with your phone" error is usually due to architecture compatibility.
  12. Help! Trouble Installing LGL Mod Menu on Android 14 - Seeking Solutions

    Check in "Application.mk" as well... APP_ABI := arm64-v8a If it has armeabi-v7a there as well, remove it.
  13. Help! Trouble Installing LGL Mod Menu on Android 14 - Seeking Solutions

    What about your offsets etc? Are they dumped from the 64bit version of the game you're modding, is your lib.so file in a folder called arm64-v8a or armeabi-v7a? In your main.cpp, make sure your code/offsets are under this line... #if defined(__aarch64__) //To compile this code for arm64 lib...
  14. Help! Trouble Installing LGL Mod Menu on Android 14 - Seeking Solutions

    It's likely you have a device which chip supports 64bit only (like the Snapdragon 8 Gen 3) meaning you can only install 64bit apk's. The solution would be to change your lgl project to arm64-v8a