Recent content by Smiley3rd

  1. Shared MOD Another Life - Life Simulator Ver. 4.1.4 MOD APK | No Ads | Unlimited Life Points | Stats Hack | Money Hack

    Playstore Link: https://play.google.com/store/apps/details?id=com.anotherlife.lifesimulator Game Name: Another Life - Life Simulator Game Version: v4.1.4 Needs OBB: Yes Needs Root: No *MOD Features* No Ads Unlimited Life Points Stats Hack Money Hack Credit to: ? Free Download: Hidden...
  2. Solved Hook void (float)

    void NormalDamage(void * instance, int newDamage, void *enemy, void *multiplier) ; void _NormalDamage(void * instance, int newDamage, void *enemy, void *multiplier) { if (instance != nullptr) { //do whatever you want here newDamage = 999999; //example for changing the param...
  3. Help! Static class and static field

    How to get static field on static class? Normally i use bnm but it dosen't seem to work for this game? idk but does anyone know how to get it manually?
  4. Help! What is this?

    Nothing, it just means you build it for arm32 but it still works for arm64 so nothing to worry about
  5. Help! Hooks not working...

    Do you mind uploading the dump files / lib and metadata.
  6. Help! ESP the line is not on target

    Are you sure you got the correct target you're looking for? Also, you can use 'MATH'.
  7. Help! Bypassing hash checks?

    Can anyone help me with hash checks
  8. Help! void

    I don't know why it still doesn't work but maybe because of how you hooked the field? try to set to true or false not number
  9. Solved Int array

    it's literally saying what the error is... because im in the mood ill help you, go to the unity file and change the following #include <mach-o/dyld.h> #define ASLR_BIAS _dyld_get_image_vmaddr_slide uint64_t getRealOffset(uint64_t offset){ return ASLR_BIAS + offset; } to #include...
  10. Solved Int array

    You could use this, just import it to your project UnityStuff-1/Unity.h at master · Karveit/UnityStuff-1 · GitHub example hooking using monoArray let's take yours as example in dump int[] stats; //0x30 hooking would be like this void (*old_update)(void *instance); void update(void...
  11. Help! void

    When you said it dosen't work, could you be more specific? It doesn't work when building or the hook doesn't work? If the hook doesn't work, try to check if 'LocalStore' is null what it should look like: void (*old_update)(void *instance); void update(void *instance) { if (instance != NULL)...
  12. Help! void

    No, remove the brackets like this LocalStore = *(void **) ((uint64_t)instance + 0x3C);