Recent content by libModz

  1. Help! Modding help

    You're looking for a method/field to seperate them, usually this is called "isMine" or "isLocalPlayer" or something along those lines
  2. Help! How to compare between String method with our Monostring input

    What is the number 5 int *type parameter for?
  3. Help! App not installed as app isn't compatible with your phone. Al

    If your phone is 64bit then PlayStore will download the 64bit version of the apk, where as the mod apk is likely made for 32bit. Since newer phones are dropping support for 32bit completely, means you won't be able to install 32bit apks.
  4. 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.
  5. 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);
  6. 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); //...
  7. 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
  8. Help! Can't install LGL Mod Menu

    I tried sdk version 29 and it worked. Thanks
  9. 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)...
  10. 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)...