Jump to content

L808

Senior Member
  • Posts

    1,011
  • Joined

  • Last visited

Everything posted by L808

  1. Mod APK Game Name: Unknown Knights: Pixel RPG Google Play Store Link: https://play.google.com/store/apps/details?id=com.cookapps.bm.unknownknight How to install ANY SIGNED MOD APK ? Install Original APK, launch the game, connect to your account, rename in Android > data "pkgname" to "pkgnamexx", uninstall original APK, install MOD APK, rename back "pkgnamexx" to "pkgname", launch the game, enable overlay permission (wait at least 5s before getting back to the game (it will crash first time if you're not waiting), connect to your account again, have fun! -- pkgname = name of the package -- Hack Features: - Atk Low Multiplier [Instant Patch] - Hp Low Multiplier [Instant Patch] iOS Jailbreak & Non-Jailbroken Hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/ For more fun, check out the Club(s): https://iosgods.com/clubs/ Android Mod 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: - L808 Cheat Video/Screenshots:
  2. Hey it's me again 😛 I will just show how can be useful ChatGPT for modding in some ways.. Cool, right ? o:
  3. It's cool to found old APK (can dump) and try more with Assembly CSharp DLL 

    1. L808

      L808

      find* im terrible in English :x

  4. Use ChatGPT for modding Unity games, trust me it's useful

    1. Rook

      Rook

      What prompts are you using? Tutorial :D

    2. Puddin

      Puddin

      "how to disable liapp protection?" 

    3. L808

      L808

      Yes i will do tutorial for sure 😊

    4. L808

      L808

      Haha you're into LIAPP, I'm into NHNENT AppGuard and haven't solved the error yet but i'm close to find, have already tested a lot 

  5. i will do new tutorial soon on Android section, special one 

  6. life is hard, always, but you need to accept things that you can't do anything for, and going forward

  7. Would recommend this one: https://apk.support/apk-downloader?utm_source=chrome-extension Great tutorial!
  8. INT / FLOAT 00 00 A0 E3 1E FF 2F E1 = 0 (INT/FLOAT) -> can be useful to decrease HP, atk, def, all kind of stuff you need 0 as a value 7A 04 44 E3 1E FF 2F E1 = 1000 (FLOAT) -> can be useful for attack speed, move speed. INT64 / LONG FF 09 0C E3 00 10 A0 E3 9A 0B 43 E3 1E FF 2F E1 = 999999999 -> can be useful for HP, atk, def. 00 00 A0 E3 00 10 A0 E3 1E FF 2F E1 = 0 -> can be useful to decrease HP, atk, def. DOUBLE VALUE 00 10 40 E3 1E FF 2F E1 = 0 -> can be useful for UpgradePrice, any kind of upgrade cost, decrease HP, ATK, def. B2 14 45 E3 1E FF 2F E1 = 9.842628261523554e+99 -> can be useful for godmod, gold, exp, any multipliers. NO OPERATION / SKIP CODE VALUES -> do this on void methods. 00 F0 20 E3 1E FF 2F E1 = NOP BX LR -> can be useful to skip code inside methods that don't have any parameters in it, it's also a big hint for bypass new securities. 00 00 A0 E1 1E FF 2F E1 = SKIP CODE IN PARAMETERS (change the first two hex (00) with the number of parameters you have, for example if you have 7 parameters, you will put 07. it's also a big hint to skip a lot of things.
  9. Hey it's me again, here to share my knowledge as a modder and so new modders can get to advanced modding really quick than struggling a lot of hours with missing informations! I will get to the point directly: How to modify methods with parameters (Field Offset Patching), with no experience ? Here is the method we will be trying to hook. Then, how to modify this method properly ? First, read the parameters in it and think outside of the cube.. We have a class called SkillTableData, and the parameter float _CoolTime Now you're probably asking yourself what to do ? Step 1 - Go to SkillTableData Step 2 - Search if the parameter _CoolTime is in SkillTableData What is the ARM Instruction and HEX to modify it ? Well, since it's a Cooldown Time parameter, i would put 0 as a value in it. ARM INSTRUCTION: MOV R1, #0x0000 STR R1, [R0,#0x7C] <- #0x7C is the field offset, replace it with your actual field offset. BX LR HEX: 00 10 A0 E3 7C 10 80 E5 1E FF 2F E1 I hope you enjoyed this tutorial! See ya, L808
  10. No more updates until i can bypass NHN Appguard Alert
  11. Hey it's me again! I will directly get to the point: HOW TO MODIFY THOSE DAMN DOUBLES ? EXAMPLE So, the way you would modify this is pretty simple, GetUpgradeCost -> i want the cost to be 0, but i don't know how to modify doubles yet.. And you're on the right tutorial to get the answer and the method as well! -- Sharing knowledge is always good -- First get a floating point converter! Why? Because doubles are double floats! Link: https://gregstoll.com/~gregstoll/floattohex/ How can i convert this value, to an ARM instruction ? Well, here is the magic, for simple float ARM instruction would be: MOV R0, #0x0000 BX LR Then how to find it for a double value ? Well, here is another magic: 1000 in float ARM instruction is: MOVT R0, #0x447A And so what is the double value for 0 ? It's pretty simple: ARM instruction is: MOVT R1, 0x0000 BX LR HEX: 00 10 40 E3 1E FF 2F E1 For every doubles it will be MOVT R1, 0x???? BX LR Use the floating point converter to get the right HEX and just put it after MOVT R1. And now you have your upgrades cost 0, or 1, it depends how the game works, magic ? YES I hope you enjoyed this tutorial! See ya, L808
  12. Hey, if you're here you probably wondering what's inside some codes that have <void> and don't have any parameters or have some but the code always hided, RIGHT ? Well you're on the perfect tutorial to see what's going on behind those codes! First Example: Every Create functions you can do something that is called "No Operation." Here, GameController is calling CreateGameIntro, the function is pretty self explanatory! The game will just hide stuff into this function to create a game intro! How to mod this ? Well, if you know ARM codes (especially ARM32 codes) you'll just have to NOP BX LR that stuff -> HEX: 00 F0 20 E3 1E FF 2F E1 Second Example: Well, it's another example but different code, it is for updating the game, inside the code there is probably something to call the update and if you skip it, you will have no update! For the method you have 4 parameters: The method i use to force return the parameters is pretty simple HEX: 04 00 A0 E1 1E FF 2F E1 I hope you enjoyed the tutorial =)) There is many other examples to do with these two methods, but i let you find it and test everything you can actually test 😛 see ya, L808
  13. coming back soon, just training on bypassing new securities 🙌🏻💞😃👍

  14. Mod APK Game Name: Magical Atelier by Smilegate Rooted Device: Not Required. Google Play Store Link: https://play.google.com/store/apps/details?id=com.smilegate.magicshop.stove.google&hl=en&gl=TH How to install any signed MOD APK ? Install Original APK, launch the game, connect to your account, rename in Android > data "packagename" to "packagenamexx", uninstall original APK, install MOD APK, rename back "packagenamexx" to "packagename", launch the game, enable overlay permission (wait at least 5s before getting back to the game (it will crash first time if you're not waiting), connect to your account again, have fun! Hack Features: - Unlimited Mana Recharge - - - - iOS Jailbreak & Non-Jailbroken Hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/ For more fun, check out the Club(s): https://iosgods.com/clubs/ Android Mod 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: - L808 Cheat Video/Screenshots: N/A
  15. Mod APK Game Name: Eatventure by Lessmore UG Rooted Device: Not Required. Google Play Store Link: https://play.google.com/store/apps/details?id=com.hwqgrhhjfd.idlefastfood&hl=fr_CA&gl=JP Hack Features: - Speedhack 10X - - - - iOS Jailbreak & Non-Jailbroken Hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/ For more fun, check out the Club(s): https://iosgods.com/clubs/ Android Mod 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: - L808 Cheat Video/Screenshots: N/A
  16. its not mod error bro, you have to fix this from your device
  17. good rythm of sleep = good life

×
  • 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