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. What is MShook and what is the purpose of it? I have read many tutorials here on MShook and understood those tutorials but they don't say what is the purpose of MShook, and can MShook also be for Android in C++ as I am an Android user?
  8. just replying to see hidden content✔
  9. wait..... is that you from Jbro's server????? I am PixelYT the guy who had a profile pic with a red P. but now my profile pic is the flag of israel. so is it u uu????
  10. Hello, there is an apk game which I want to mod the coins value and I searched for the coins function, founded it but offset is too short, can't be located in HxD. APK: http://slickstudios.net/Downloads/ForumComp signed.apk Built-in type: il2cpp Programming Language: C#, file is a .cs extension Problem: Offset of a field function is too short, cannot be modded in Hex Editor Code: // Fields public Text coinText; // 0xC private int coinMultiplier; // 0x10 public int totalCoins; // 0x14 <-------- specifically this one
  11. I literally replied to you telling you to not trust Errcr404, else I would've replied to Errcr's post
  12. don't trust this guy, he has posted on every forum possible and on every modders/modding discord because he wants to write aimbot/esp and I have heard that he stole some mod or faked something [heard this on [Jbro's server]
  13. @boldfacebutton7 If you mean cloning as in having the same game on the same phone with separate apks then just use Parallel Space on playstore, or Virtual Space
  14. Sorry for late reply>> For that you'll need IDA Pro, And here is the tutorial. But you can also just open the lib in IDA Pro but if the game has good anticheat, then likely many methods will be obfuscated and to deobfuscate you'll need script.py, this game has protection. So as I said above, manually dump first and load script.py
  15. Just use IDA lol, drag the .so file and choose arm processor
  16. 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
  17. so that means I need root to get that file?
  18. what is this directory?? is it in Android>Data>com.app.name
  19. yeah well I made a mod too with ammo and health but that was an old version I looked everywhere, found a folder named il2cpp in the data but it only contained a metadata not a .so file
  20. it's not a split it uses a .dat file like plants vs zombies, pvz2 basically it uses the usual metadata and .dat which is uncommon how to dump those files? IDA or what??
×
  • 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