Search results

  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);
  13. Help! Menu module needs help!!

    Look in the dump
  14. Help! I'm Learning to Hook. (HELP)

    You want someone to give you the exact code for hook? XD
  15. Help! How to making esp game zombies

    Bro.....Just Search it
  16. Help! HOOK Method Returning a Value Help!

    Mobile Legends... Why not patch instead of hook?
  17. Help! GAME dectect menu mod LGL

    If you still want to work with your current menu you can just add androtrainer to your current menu and look on Main.java to see how it works
  18. Help! GAME dectect menu mod LGL

    I see that you have no idea what you are doing. You are trying to patch something with 00 00 00 00 which obviously wouldn't work. You said that it works on gameguardian so i'll assume that the value is from gameguardian. Try this instead GitHub - LGLTeam/Mod-Menu-With-Memory-hack
  19. Help! Unable to authenticate to servers when modding a game

    If multiplayer requires google play then you're out of luck
  20. Solved Help in patching

    It should work. How about removing string2OffsetFix MemoryPatch::createWithHex(offsets.ads, OBFUSCATE("00 00 A0 E3 1E FF 2F E1")); Look inside MemoryPatch header you'll see there
  21. Solved Help in patching

    try removing targetLibName i dont think you need that
  22. Help! offset help / unlocking hidden options

    You could try hooking it like this void(*old_Update)(void *instance); void Update(void *instance) { if(instance != NULL) { if (*yourbool) { //if Toggle *(bool *) ((uint64_t) instance + 0x30) = true; } } old_Update(instance); } Then call using MSHook or HOOK when using lgl's template
  23. Help! offset help / unlocking hidden options

    Try hooking it with update function
  24. Help! offset help / unlocking hidden options

    you can't patch a field i think.