Search results

  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
  15. 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"
  16. 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) {...
  17. 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
  18. 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.
  19. Help! Need Help with Stumble Guys Modding: Unlocking Emotes/Skins

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

    Oh right ok, not sure about iOS. Sorry
  21. 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
  22. 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) {...
  23. Solved Ortographic & Ortographic Size - Android, Unity Game

    Is there an update function in the same class? Then you could do it like this... void (*set_orthographic)(void *instance, bool value); void (*setorthographicSize)(void *instance, float value); void (*old_Update)(void *instance); void Update(void *instance) { if(instance!=NULL) {...
  24. Help! HOOK VOID WITHOUT UPDATE

    In this case you can try to use an update function from a different/similar class
  25. Help! HOOK VOID WITHOUT UPDATE

    AFAIK you need an Update or similar function to hook void to. Since you're hooking a method and not a field offset you could use an update function from a different class. It really depends on the game. Is there not an update function in the same class as public void Charge? It could be...
  26. Solved Help How to call void in lgl mod menu

    You need to hook void Jump through a void Update function. Look to see if there is Update, LateUpdate, or FixedUpdate in the same class then you can hook it like this... bool AlwaysJump; void (*Jump)(void *instance); void (*old_Update)(void *instance); void Update(void *instance) {...
  27. Help! The function works but the game crashes !

    You need to hook an update function from the class then hook void addPoints(int pointsToAdd) {} through that like this.... bool AddPoints; void (*addPoints)(void *instance, int value); void (*old_Update)(void *instance); void Update(void *instance) { if(instance!=NULL) {...
  28. Help! Room Password

    Depends on the game, look for keywords like "password" "set_password" in dump.cs and then hex patch (nop) the method