Jump to content

Batch

Developer
  • Posts

    1,848
  • Joined

  • Last visited

Everything posted by Batch

  1. This is done automatically, in which game do you have this issue?
  2. No we use igmenu that has a special method in it
  3. Yes use standard theos and silenPwn and libspecter. Just add libspecter .a into makefile and then import the header file.
  4. Yes, the other library replace the binary code, that is not allowed into non jailbreak
  5. Dobby will not work on non jailbreak. For hooks just use breakpoints from my library, that's it
  6. Mmmh interesting! will look into this, btw to lift the ban use igg "app reset & spoof", it will lift your device ban and just create a new account
  7. Don't inject anything else just your .deb!!!
  8. They changed that, now player position is only revealed if they are near something, so it's not always on, it's a server side thing
  9. I think there is already that you tap to attack and it will auto aim for you
  10. You need to enable play a bit then close application and reopen
  11. This is not possible :v
  12. Could you try only FoV and no map? im starting to think the reveal enemies has some detection into it
  13. Modded/Hacked App: League of Legends: Wild Rift By Riot Games Bundle ID: com.riotgames.league.wildrift App Store Link: https://apps.apple.com/us/app/league-of-legends-wild-rift/id1480616990?uo=4 📌 Mod Requirements - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad. - Sideloadly or alternatives. - Computer running Windows/macOS/Linux with iTunes installed. Hack Features - Zoom Out (FoV Changer) - Reveal Enemies (WIll show in minimap enemies near monster and also all monster hp) USE AT YOUR OWN RISK! There is a risk of ban so be aware of it and don't use on your main account! ⬇️ iOS Hack Download IPA Link [Hidden Content] 📖 PC Installation Instructions STEP 1: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see our iOSGods App IPA Download Tutorial which includes a video example. STEP 2: Download Sideloadly and install it on your Windows or Mac. STEP 3: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly. STEP 4: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application. STEP 5: Enter your Apple Account email, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide the required information. STEP 6: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below. STEP 7: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles / VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'. STEP 8: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game. NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue 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 - Batch 📷 Cheat Video/Screenshots N/A
  14. https://github.com/Batchhh/libspecter/releases/tag/v1.0.6 Download latest and then you can do something like: using AddRecoil_t = void (*)(void *self, float amount); static uint64_t g_addRecoilBrk = 0; static AddRecoil_t orig_AddRecoil = nullptr; void hook_AddRecoil(void *self, float amount) { if (orig_AddRecoil) { CHECK(mem_brk_suspend_self()); orig_AddRecoil(self, amount); CHECK(mem_brk_resume_self()); } } void install() { CHECK(mem_init("UnityFramework", nullptr)); CHECK(mem_brk_install(0x123, reinterpret_cast<uintptr_t>(hook_AddRecoil), &g_addRecoilBrk)); uintptr_t absolute = 0; CHECK(mem_brk_target(g_addRecoilBrk, &absolute)); orig_AddRecoil = reinterpret_cast<AddRecoil_t>(absolute); }
×
  • 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