Jump to content

Jbro129

Senior Member
  • Posts

    261
  • Joined

  • Last visited

Profile Information

  • iDevice
    iPhone 8 Plus
  • iOS Version
    13.3.0
  • Jailbroken
    Yes
  • Android Device
    Galaxy Note 9
  • Android Version
    Pie
  • Rooted
    Yes
  • Gender
    Male
  • Interests
    YouTube and modding

Recent Profile Visitors

12,366 profile views

Jbro129's Achievements

  1. VirtualApp is like Parallel Space which allows you to launch apps from within a virtual environment which is inside of another app. I'm sure you have heard of VirtualXposed. You can use xposed modules and run apps within a virtual environment without root or xposed being present on your device. VirtualApp is very powerful framework and is what made my old PG3D Mod Menu Launcher possible. I discontinued my launcher a long time ago and I have been absent from the modding community and YouTube for a long time as well, I want to share some of my modding knowledge since a lot of what I know can't be found on any modding forum, which is why I decided to upload my project to Github. This isn't a tutorial. This is me showing how I managed to create my mod menu launcher so that anyone interested could use the code and/or techniques shared to create something themselves. Check it out here I hope you guys like it
  2. Yes that is possible. BX LR the function. BX LR at the beginning of a void function would do what you are talking about private void function() { // nothing here } BX LR wont necessarily return anything, it will just end the function like above. Using BX LR at the very start of a void will do what you want. BX LR ARM Hex -> 1E FF 2F E1 Thumb Hex -> 70 47
  3. I know a lot more conversions but some are hard to explain. Im glad you found this topic helpful
  4. I am aware that the file on MediaFire got blocked. I have no idea why it thinks its dangerous but I will reupload it.
  5. Download link under the "hidden content" section. Java and C++. I used Android Stuido, IDA Pro and Il2cppDumper.
  6. Mod Menu APK Game Name: Pixel Gun 3D Rooted Device: Not Required. Google Play Store Link: Play Store This PG3D Mod Menu is minimal compared to my main launcher and is not game breaking but it still useful. This is NOT a launcher like my Terraria Mod Menu Launcher which means if you already have PG3D installed you will have to replace your current installation of PG3D with the modded one. Mod Menu Features: - Add/Sub 100 Coins - Add/Sub 100 Gems - Add/Sub 100 Keys - Battle Pass Freedom (Battle Pass Level Up Exp = 0) - Level Changer (Change between levels 1, 6, 11, 16, 21, 26, 31, 36, 38) - Tutorial Completed - VIP Mode Mod Menu APK Download Link: [Hidden Content] Installation Instructions: STEP 1: Download the Modded APK file above using your favorite browser or a download manager of your choice. STEP 2: Copy the file over to your Android device via USB or wirelessly. Skip this step if you're using your Android device to download the mod. STEP 3: Browse to the location where the hacked APK is stored using a file manager of your choice. STEP 4: Tap on the .APK mod file then tap 'Install' and the installation should begin. STEP 5A: If the mod contains an OBB file, extract it if it's archived and copy the folder to /Android/obb. STEP 5B: If the mod contains a DATA file/folder, extract it if it's archived and copy the folder to /Android/data. STEP 6: Once the installation is complete, everything should be ready. Enjoy! NOTE: If you have any questions or problems, read our Frequently Asked Questions topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues. Credits: - @Jbro129 (MEE) Subscribe to me on YouTube if you like this Cheat Video/Screenshots:
  7. I uploaded a video of this on Google Drive because I am too lazy to upload it unlisted to YouTube. :v Preview: https://drive.google.com/file/d/1BTqrBilqesIMh1frEA1Yg1-9Cw07dCsT/view?usp=sharing Info: Let me start off by somewhat explaining how I achieved this. We all know the legendary @shmoo (You better know him) and his amazing iOS modding tutorials. The crazy thing is that his best iOS tutorials (Instance variables and function pointers and Static Members and Multithreading) are extremely similar to how Android C++ works! @shmoo has some aimbot demo code that you can learn from on his Github. Below I posted a somewhat 'Starter kit' to help others who want to do something similar. Before using this make sure to check out Shmoo's tutorials for a general understanding. [hide]Check It Out On GitHub[/hide] Hopefully this is the start to more Android C++ Game Mods. Credits/Thanks: @Jbro129 (MEEE) @shmoo (Legendary)
  8. You can use cpad with it. Cpad adds dummy offsets and hex so you can hide the real ones. It's not included it's optional. You can always use something like Stringer or allatori to obfuscate the offsets and hex. Please use your head.
  9. Yes it patches which ever is in /data/data/(whichever)/lib/lib.so at the time
  10. No, this can be added to the games files when used with APKTool. As long as the apk is compiled and signed afterwards it shouldnt need root
  11. I have been talking about this for awhile... HERE WE GO!!! I apologize if you do not understand a part of this, I am bad at explaining things... Features: Write hex to a specific lib.so (libil2cpp.so or others) at runtime. Mixed with CPAnitDumper it is harder for leechers to L E E C H Works on all types of android games (Unity etc) To Do: Video tutorial Write to multiple lib.so's Make instructions easier to understand Download: [Hidden Content] Beginning Tutorial: If you have not read @ZahirSher's tutorial on how to "How to add a Toast/Popup to your Android Mods" then read instructions 1 - 11. Once you have done this to your apk continue below. Download Code Above ^^^ Read the file "README.txt" in the zip file downloaded. In OnCreate inside the smali file paste the code said inside of the txt file downloaded (its inside of the two big lines). Change the text "/lib/libil2cpp.so" to your specific lib you want to write to. Unity is going to always be "/lib/libil2cpp.so". Others might be "/lib/libTerraria.so" or "/lib/libgameidk.so". Paste Inject.smali inside of the apps smali directory like this (create new folders if needed) - /smali/com/jbro129/androidinject/Inject.smali Writing To The Lib: Here is the base smali code to put inside Inject.smali from what you downloaded. const/16 v1, 0x1234 // the offset const-string/jumbo v2, "1EFF2FE1" // the hex invoke-static {v1, v2}, Lcom/jbro129/androidinject/Inject;->write(ILjava/lang/String;)V // write Inside of Inject.smali paste that code as many times as needed with your own offsets and hex. Rebuilding APK: "How to add a Toast/Popup to your Android Mods" instructions 13 - 17. Video Tutorial: Coming Soon! Credits: - @Jbro129 (me)
  12. Im in the credits Yes I released this a long time ago
×
  • 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