Jump to content

PixelYT

Member
  • Posts

    59
  • Joined

  • Last visited

Everything posted by PixelYT

  1. oh wow, now i understand. It's just like how when we hook an Update method and use function pointers on it, we don't use return because the Update method is a void which means it doesn't return anything. Thank you, now I understand, i just didn't know that when we hook a method that is a void but not the Update method, we just call the function and set it's parameters without return.
  2. so we when we are setting values to parameters, we use the old_ammo but when there is no parameters we just use the ammo and inside of it return 99999 or whatever we want, right?
  3. Let's say I have this function in the dump.cs: protected void ammo(int value, bool reload); // 0x289235 and I hooked it like this: void(*old_ammo)(void *instance, int value, bool reload); void ammo(void *instance, int value, bool reload) { if(instance != NULL) { // do something } return old_ammo(instance, value, reload); } MsHookFunction((void*)getAbsoluteAddress(0x289235), (void*)ammo, (void**)&old_ammo); How would I set values to the parameters? Would I do it like this: void(*old_ammo)(void *instance, int value, bool reload); void ammo(void *instance, int value, bool reload) { if(instance != NULL) { return ammo(instance, 9999, false); } return old_ammo(instance, value, reload); } MsHookFunction((void*)getAbsoluteAddress(0x289235), (void*)ammo, (void**)&old_ammo); or like this? void(*old_ammo)(void *instance, int value, bool reload); void ammo(void *instance, int value, bool reload) { if(instance != NULL) { return 9999, false; } return old_ammo(instance, value, reload); } MsHookFunction((void*)getAbsoluteAddress(0x289235), (void*)ammo, (void**)&old_ammo); Which one is correct? If none are correct, then how would I do it?
  4. There is, I don’t know how to do it and I’ve never done it. Every advanced modded will tell you it’s complicated. I only split methods via hooking like most other modders and you should too.
  5. replying to unlock content okay
  6. You need to add a toast using either APK Editor or Notepad++. Since I am too lazy to post all the steps here for adding toast or mentioning a tutorial which shows you how to do it, I suggest you look up "How to add toast to APK using (APK Editor/Notepad++).
  7. just replying to see hidden content✔
  8. Just use IDA lol, drag the .so file and choose arm processor
  9. fix methods: 1. Game has protection against dumping so you can't hack 2. try different mode 3. make sure all il2cppdumper files, metadata, and il2cpp.so file are in the same exact folder 4. make sure you have the latest il2cppdumper version 5. if it asked u to input unity version, then u probably have put wrong version 6. use GUI tool but make sure above methods are also done on this version https://www.mediafire.com/folder/x3or31t30o5t1/Il2CppDumper_GUI what is the game and if u don't understand the methods above then tell me
  10. I couldn't breath when It said by Jbro129😱🤪
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines