
PixelYT
Member-
Posts
59 -
Joined
-
Last visited
Everything posted by PixelYT
-
Help/Support How to return a value to a function with parameters?
PixelYT replied to PixelYT's topic in Android Help & Support
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. -
Help/Support How to return a value to a function with parameters?
PixelYT replied to PixelYT's topic in Android Help & Support
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? -
Help/Support How to return a value to a function with parameters?
PixelYT replied to PixelYT's topic in Android Help & Support
Thanks sir! :)) -
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?
-
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.
-
replying to unlock content okay
-
Help/Support ้how to add text show after start app ?
PixelYT replied to THeSunday's topic in Help & Support
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++). -
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?
-
just replying to see hidden content✔
-
hello
-
Mod Menu Hack [X64] Bloons TD 6 v16.2 +7 FREE Hacks
PixelYT replied to Red16's topic in Free Jailbreak Cheats
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???? -
Help/Support How To Get Offset Of A Field Function?
PixelYT posted a topic in Android Help & Support
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 -
Android Tool [Android] LibInjector (Write Mods To An App At Runtime)
PixelYT replied to Jbro129's topic in Android Tools
dook -
Help/Support Problem Decompile and Compile
PixelYT replied to Errcr404's topic in Android Help & Support
I literally replied to you telling you to not trust Errcr404, else I would've replied to Errcr's post -
Help/Support Problem Decompile and Compile
PixelYT replied to Errcr404's topic in Android Help & Support
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] -
Help/Support Android App Cloning
PixelYT replied to boldfacebutton7's topic in Android Help & Support
@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 -
Help/Support Il2CppDumper - protected file
PixelYT replied to metasharp's topic in Android Help & Support
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 -
Help/Support How to bypass protect il2cpp dump
PixelYT replied to มือสมัครเล่น's topic in Android Help & Support
Just use IDA lol, drag the .so file and choose arm processor -
Help/Support How to bypass protect il2cpp dump
PixelYT replied to มือสมัครเล่น's topic in Android Help & Support
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 -
Help/Support Has metadata, but no libs at all
PixelYT replied to PixelYT's topic in Android Help & Support
so that means I need root to get that file? -
Help/Support Has metadata, but no libs at all
PixelYT replied to PixelYT's topic in Android Help & Support
what is this directory?? is it in Android>Data>com.app.name -
Help/Support Has metadata, but no libs at all
PixelYT replied to PixelYT's topic in Android Help & Support
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 -
Help/Support Has metadata, but no libs at all
PixelYT replied to PixelYT's topic in Android Help & Support
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??