Search results

  1. Help! Hooking Void Update Crash

    You haven't included the instance inside the function... void (*old_Update) (void *instance); void Update(void *instance) { if(instance != NULL && isUpdate) { ChangeField(instance, 6000, 0, 0, 0, 0, 0); isUpdate = false; } old_Update(instance); } Also...
  2. Help! How to add mod menu in game that has pairip protection?

    Have you tried this method? https://www.google.com/amp/s/platinmods.com/threads/how-to-bypass-pairip-protections-latest-too-easy.203105/%3famp=1
  3. 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
  4. Help! How to compare between String method with our Monostring input

    What is the number 5 int *type parameter for?
  5. 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.
  6. 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.
  7. 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);
  8. 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); //...
  9. 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
  10. Help! Can't install LGL Mod Menu

    I tried sdk version 29 and it worked. Thanks
  11. 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)...
  12. 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)...
  13. 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
  14. 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.
  15. 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.
  16. 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...
  17. 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
  18. Help! I need help with the distinction between friend and foe.

    There's a method in that class called "IsEmemy" which is probably a bool with an int parameter to check the team color. It might be better to use that instead of "get_Team"
  19. Help! I need help with the distinction between friend and foe.

    Looks like it uses enum which is the same as int to determine the team color. I could be wrong but I'd hook it like this... int (*General_get_Team)(void *instance); Then use it in in a hook like so... void (*old_Update)(void *instance); void Update(void *instance) { if(instance!=NULL) {...
  20. Help! App not installed as app isn't compatible with your phone. Al

    Which has the Tensor G3 chip, which is also 64bit only. Meaning you can't install 32bit apk's
  21. Help! App not installed as app isn't compatible with your phone. Al

    Do you by chance have the S24 Ultra or similar phone with the Snapdragon 8 Gen 3? If so then no, this chip doesn't support 32bit apps.
  22. Help! Need Help with Stumble Guys Modding: Unlocking Emotes/Skins

    Stumble Guys is pretty much all server side
  23. Help! How to exclude yourself from drawing ESP

    Oh right ok, not sure about iOS. Sorry
  24. Help! How to exclude yourself from drawing ESP

    Try it like this... bool (*get_isLocalPlayer)(void *instance); void (*old_player_update)(void *player); void new_player_update(void *player) { if(player != NULL) { bool isLocal = get_isLocalPlayer(player); if(!isLocal) { // Your ESP code
  25. Help! How to exclude yourself from drawing ESP

    I could be wrong but I'd imagine it would be something like this... bool (*get_isLocalPlayer)(void *instance); void (*old_ESP_Update)(void *instance); void ESP_Update(void *instance) { if(instance!=NULL) { bool isLocal = get_isLocalPlayer(instance); if(ESP) {...