Jump to content

22 posts in this topic

Recommended Posts

Posted

Hi, 

I was busy making tweaks using theos but im facing a problem where my tweaks (.dylibs) works perfectly fine on Playcover but does not when in my iphone, i followed every tutorials, and still no 

please help, i dont known if the iosGod .dylibs have some sort of bypass code that makes it works and i dont have it

Just now, A1XEN said:

Hi, 

I was busy making tweaks using theos but im facing a problem where my tweaks (.dylibs) works perfectly fine on Playcover but does not when in my iphone, i followed every tutorials, and still no 

please help, i dont known if the iosGod .dylibs have some sort of bypass code that makes it works and i dont have it

@Rook @Laxus @Puddin

  • Replies 21
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted (edited)
17 minutes ago, A1XEN said:

Hi, 

I was busy making tweaks using theos but im facing a problem where my tweaks (.dylibs) works perfectly fine on Playcover but does not when in my iphone, i followed every tutorials, and still no 

please help, i dont known if the iosGod .dylibs have some sort of bypass code that makes it works and i dont have it

@Rook @Laxus @Puddin

#import <UIKit/UIKit.h>
#import <mach-o/dyld.h>
#import <substrate.h>
#import <pthread.h>

uintptr_t get_FrameworkBaseAddress() {
    uint32_t count = _dyld_image_count();
    for (uint32_t i = 0; i < count; i++) {
        const char *name = _dyld_get_image_name(i);
        if (name && strstr(name, "UnityFramework")) {
            return (uintptr_t)_dyld_get_image_header(i);
        }
    }
    return 0;
}

void writeLocalLog(NSString *text) {
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *logFilePath = [documentsDirectory stringByAppendingPathComponent:@"tweak_debug.txt"];
    
    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
    [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    NSString *timestamp = [formatter stringFromDate:[NSDate date]];
    NSString *finalLine = [NSString stringWithFormat:@"[%@] %@\n", timestamp, text];
    
    NSFileHandle *handle = [NSFileHandle fileHandleForWritingAtPath:logFilePath];
    if (!handle) {
        [[finalLine dataUsingEncoding:NSUTF8StringEncoding] writeToFile:logFilePath atomically:YES];
    } else {
        [handle seekToEndOfFile];
        [handle writeData:[finalLine dataUsingEncoding:NSUTF8StringEncoding]];
        [handle closeFile];
    }
}

bool (*old_CanBuy)(void *instance, void *requireMoney, void *methodInfo);
bool new_CanBuy(void *instance, void *requireMoney, void *methodInfo) {
    writeLocalLog(@"[MoneyManager] CanBuy intercepted! Forcing true.");
    return true; 
}

void (*old_RemoveMoney)(void *instance, void *value, void *methodInfo);
void new_RemoveMoney(void *instance, void *value, void *methodInfo) {
    writeLocalLog(@"[MoneyManager] RemoveMoney intercepted! Protecting wallet balance.");
}

void *hook_worker_thread(void *args) {
    @autoreleasepool {
        writeLocalLog(@"MoneyManager Wallet Thread spawned safely.");
        
        uintptr_t baseAddress = get_FrameworkBaseAddress();
        while (baseAddress == 0) {
            usleep(200000); 
            baseAddress = get_FrameworkBaseAddress();
        }

        sleep(4); 

        NSString *addressLog = [NSString stringWithFormat:@"[Debug] UnityFramework Base: 0x%lx | Target CanBuy: 0x%lx", 
                                baseAddress, (baseAddress + 0xDA4D70)];
        writeLocalLog(addressLog);

        MSHookFunction((void *)(baseAddress + 0xDA4D70), (void *)&new_CanBuy, (void **)&old_CanBuy);
        MSHookFunction((void *)(baseAddress + 0xDA4E44), (void *)&new_RemoveMoney, (void **)&old_RemoveMoney);

        writeLocalLog(@"Wallet bypass successfully! :>");
    }
    return NULL;
}

%ctor {
    pthread_t pt;
    pthread_create(&pt, NULL, hook_worker_thread, NULL);
}

this is my code, this works perfect on playcover, but in iphone, it shows the log i made  "Wallet bypass successfully! :>" but it doesnt even work in-game :<
please tell me what's wrong with it (if there is)

Updated by A1XEN
Posted
38 minutes ago, A1XEN said:

Hi, 

I was busy making tweaks using theos but im facing a problem where my tweaks (.dylibs) works perfectly fine on Playcover but does not when in my iphone, i followed every tutorials, and still no 

please help, i dont known if the iosGod .dylibs have some sort of bypass code that makes it works and i dont have it

@Rook @Laxus @Puddin

i actually tried revising the code, i used the rule:

True iPhone Offset=Disassembler Address−Disassembler Base Address (usually 0x100000000)−Segment Offset (usually 0x4000)

and still nothing 

Posted

Are you using a menu or something?

On Jailbreak there's rootful, rootless, & RootHide now so you need to compile appropriately.

Posted
19 minutes ago, Rook said:

Are you using a menu or something?

On Jailbreak there's rootful, rootless, & RootHide now so you need to compile appropriately.

im not, im on jailed device, im actually going to try to make a menu if i could tomorrow (im going to sleep) because my code might be hooking to early you see what i was tryna do is make the patches from live offset patcher to run automatically without the live offset patcher only using .dylibs so its supposed to apply the patches automatically when the game run

Posted
1 minute ago, A1XEN said:

im not, im on jailed device, im actually going to try to make a menu if i could tomorrow (im going to sleep) because my code might be hooking to early you see what i was tryna do is make the patches from live offset patcher to run automatically without the live offset patcher only using .dylibs so its supposed to apply the patches automatically when the game run

Ah, but patching on jailed we do something unique to achieve that. Though I think Batch released a menu which does something similar.

Posted (edited)
5 minutes ago, A1XEN said:

im not, im on jailed device, im actually going to try to make a menu if i could tomorrow (im going to sleep) because my code might be hooking to early you see what i was tryna do is make the patches from live offset patcher to run automatically without the live offset patcher only using .dylibs so its supposed to apply the patches automatically when the game run

you see when i apply the patches manually using the live offset patcher, it works, only when i turned on the UnityFramework from iGdebugger 

3 minutes ago, Rook said:

Ah, but patching on jailed we do something unique to achieve that. Though I think Batch released a menu which does something similar.

which menu? so you mean every jailed cheats here uses that menu released by “Batch” and who/what is Batch? :?

Updated by A1XEN
Posted
8 minutes ago, A1XEN said:

you see when i apply the patches manually using the live offset patcher, it works, only when i turned on the UnityFramework from iGdebugger 

which menu? so you mean every jailed cheats here uses that menu released by “Batch” and who/what is Batch? :?

i found it but the github link is broken, can you teach the trick you do to apply patches and tweaks for jailed devices, and also if there is a official menu/template for theos that helps apply tweaks/patches on jailed devices thanks 🙏 @Rook

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Our picks

    • Wildfrost +1 Jailed Cheat [ Unlocked ]
      Modded/Hacked App: Wildfrost By Chucklefish Limited
      Bundle ID: com.chucklefish.wildfrost
      iTunes Store Link: https://apps.apple.com/us/app/wildfrost/id6462882621?uo=4

       


      🤩 Hack Features

      - Full Game Unlocked
      • 7 replies
    • Gun Girls: Mist Survival +2 Mods [ Damage + More ]
      Mod APK Game Name: Gun Girls: Mist Survival By RATING GAME
      Rooted Device: Not Required.
      Google Play Store Link: 

       

      🤩 Hack Features

      - Damage Multiplier
      - Unlimited Ammo
      • 0 replies
    • Dribble Hoops v4.17 [ +2 APK MOD ] Currency Max
      Modded/Hacked App: Dribble Hoops By Voodoo
      Bundle ID: com.wildbeep.dribblehoops
      App Store Link: https://apps.apple.com/us/app/dribble-hoops/id1489188581?uo=4

       

      Mod APK Game Name: 
      Rooted Device: Not Required.
      Google Play Store Link: 

       

      🤩 Hack Features

      - Auto ADS NO
      - Unlimited Stars

       

      ⬇️ Android Mod APK Download Link


      Hidden Content

      iOSGods App for Android







       

      📖 Android Installation Instructions

      STEP 1: Download the modded APK file from the link above using your preferred Android browser or download manager.
      STEP 2: Once the download is complete, open your file manager and locate the downloaded .apk file (usually in the Downloads folder).
      STEP 3: Tap the APK file, then select Install. If prompted, enable Install from Unknown Sources in your device settings.
      STEP 3A: If the mod includes an OBB file, extract it if it’s inside an archive. Then move the folder to: /Android/obb/
      STEP 3B: If the mod includes a DATA file, extract it if it’s archived. Then move the folder to: /Android/data/
      STEP 4: Once installed, open the game and toggle your desired cheats & features through the APK mod menu. Enjoy!

       

      NOTE: If you have any questions or issues, read our Frequently Asked Questions topic. If you still need help, post your issue below and we’ll assist you as soon as possible. If the mod works for you, please share your feedback to help other members!

       

      🙌 Credits

      - IK_IK

       

      📷 Cheat Video/Screenshots

      N/A

       

       iOS & iPadOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.
      • 0 replies
    • Dribble Hoops v4.17 [ +2 Jailed ] Currency Max
      Modded/Hacked App: Dribble Hoops By Voodoo
      Bundle ID: com.wildbeep.dribblehoops

      🤩 Hack Features

      - Auto ADS NO
      - Unlimited Stars
      • 1 reply
    • Dribble Hoops v4.17 [ +2 Cheats ] Currency Max
      Modded/Hacked App: Dribble Hoops By Voodoo
      Bundle ID: com.wildbeep.dribblehoops
      App Store Link: https://apps.apple.com/us/app/dribble-hoops/id1489188581?uo=4

       

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      - Auto ADS NO
      - Unlimited Stars

       

      ⬇️ iOS Hack Download Link


      Hidden Content

      Download Hack







       

      📖 iOS Installation Instructions

      STEP 1: Download the .deb hack file from the link above. Use Safari, Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If needed, tap on the downloaded file again, then select ‘Normal Install’ from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. If it doesn’t install successfully, see the note below.
      STEP 5: Open the game, log in to your iOSGods account when asked, then toggle on the features you want and enjoy!

       

      NOTE: If you have any questions or problems, read our Jailbreak iOS Hack Troubleshooting & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.

       

      🙌 Credits

      - IK_IK

       

      📷 Cheat Video/Screenshots

      N/A

       

      More iOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.

      Modded Android APKs
      Need modded apps or games for Android? Check out the latest custom APK mods, cheats & more in our Android Section.
      • 0 replies
    • EA SPORTS™ NBA LIVE Mobile +3 Jailed Cheats
      Modded/Hacked App: NBA LIVE Mobile Basketball By EA Swiss Sarl
      Bundle ID: com.ea.ios.nbamobile
      iTunes Store Link: https://apps.apple.com/us/app/nba-live-mobile-basketball/id1055502792?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

      - Always Perfect Steal
      - Always Perfect Dunk
      - Always Perfect Shot


      Jailbreak required iOS hacks: 

       

      iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App







       

      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 this tutorial topic which includes a video example.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly.
      STEP 5: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application.
      STEP 6: Enter your Apple Account email when prompted, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: 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 9: 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

      - AlyssaX64

       

      Cheat Video/Screenshots

      N/A
        • Informative
        • Agree
        • Like
      • 91 replies
    • EA SPORTS™ NBA LIVE Mobile +3 Cheats
      Modded/Hacked App: NBA LIVE Mobile Basketball By EA Swiss Sarl
      Bundle ID: com.ea.ios.nbamobile
      iTunes Store Link: https://apps.apple.com/us/app/nba-live-mobile-basketball/id1055502792?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia or Sileo).


      Hack Features:
      - Always Perfect Steal
      - Always Perfect Dunk
      - Always Perfect Shot


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above.
      STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice.
      STEP 3: Using Filza or iFile, browse to where you saved the downloaded .deb file and tap on it.
      STEP 4: Once you tap on the file, you will need to press on 'Install' or 'Installer' from the options on your screen.
      STEP 5: Let Filza / iFile finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 6: If the hack is a Mod Menu, which is usually the case nowadays, the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 7: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers 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:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Agree
        • Thanks
        • Winner
        • Like
      • 413 replies
    • Word Spells: Game for Adults v2.53 [ +2 APK MOD ] Currency Max
      Mod APK Game Name: Word Spells: Game for Adults
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.openmygame.magicwordsearch&hl=en

       

      🤩 Hack Features

      - Auto ADS NO
      - Unlimited Coins

       

      ⬇️ Android Mod APK Download Link


      Hidden Content

      iOSGods App for Android







       

      📖 Android Installation Instructions

      STEP 1: Download the modded APK file from the link above using your preferred Android browser or download manager.
      STEP 2: Once the download is complete, open your file manager and locate the downloaded .apk file (usually in the Downloads folder).
      STEP 3: Tap the APK file, then select Install. If prompted, enable Install from Unknown Sources in your device settings.
      STEP 3A: If the mod includes an OBB file, extract it if it’s inside an archive. Then move the folder to: /Android/obb/
      STEP 3B: If the mod includes a DATA file, extract it if it’s archived. Then move the folder to: /Android/data/
      STEP 4: Once installed, open the game and toggle your desired cheats & features through the APK mod menu. Enjoy!

       

      NOTE: If you have any questions or issues, read our Frequently Asked Questions topic. If you still need help, post your issue below and we’ll assist you as soon as possible. If the mod works for you, please share your feedback to help other members!

       

      🙌 Credits

      - IK_IK

       

      📷 Cheat Video/Screenshots

      N/A

       

       iOS & iPadOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.
      • 0 replies
    • Infinity Ops: Sci-Fi FPS +9 Jailed Cheats
      Modded/Hacked App: Infinity Ops: Sci-Fi FPS By AZUR INTERACTIVE GAMES LIMITED
      Bundle ID: com.gamedevltd.infinityops
      App Store Link: https://apps.apple.com/us/app/infinity-ops-sci-fi-fps/id1393015117?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

      - ESP Lines
      - ESP Boxes
      - ESP Bones
      - Ally ESP
      - Distance
      - Line Thickness
      - Radar Hack
      - Unlimited Ammo
      - No Spread

       

      ⬇️ iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App







       

      📖 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

      - AlyssaX64

       

      📷 Cheat Video/Screenshots

      N/A
      • 2 replies
    • Word Spells: Offline Puzzles v2.53 [ +2 Jailed ] Currency Max
      Modded/Hacked App: Word Spells: Game for Adults By MALPA GAMES LTD
      Bundle ID: com.openmygame.magicwordsearch
      App Store Link: https://apps.apple.com/us/app/word-spells-game-for-adults/id1542930270?uo=4

      🤩 Hack Features

      - Auto ADS NO
      - Unlimited Coins
      • 0 replies
    • Word Spells: Offline Puzzles v2.53 [ +2 Cheats ] Currency Max
      Modded/Hacked App: Word Spells: Game for Adults By MALPA GAMES LTD
      Bundle ID: com.openmygame.magicwordsearch
      App Store Link: https://apps.apple.com/us/app/word-spells-game-for-adults/id1542930270?uo=4

       

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      - Auto ADS NO
      - Unlimited Coins

       

      ⬇️ iOS Hack Download Link


      Hidden Content

      Download Hack







       

      📖 iOS Installation Instructions

      STEP 1: Download the .deb hack file from the link above. Use Safari, Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If needed, tap on the downloaded file again, then select ‘Normal Install’ from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. If it doesn’t install successfully, see the note below.
      STEP 5: Open the game, log in to your iOSGods account when asked, then toggle on the features you want and enjoy!

       

      NOTE: If you have any questions or problems, read our Jailbreak iOS Hack Troubleshooting & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.

       

      🙌 Credits

      - IK_IK

       

      📷 Cheat Video/Screenshots

      N/A

       

      More iOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.

      Modded Android APKs
      Need modded apps or games for Android? Check out the latest custom APK mods, cheats & more in our Android Section.
      • 0 replies
    • Stone Island : Simulator +2 Jailed Cheats
      Modded/Hacked App: Stone Island : Simulator By Game Duo Co.,Ltd.
      Bundle ID: net.gameduo.bbc
      App Store Link: https://apps.apple.com/ph/app/stone-island-simulator/id6745582536?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

      - Damage Multiplier
      - Defense Multiplier
      - Freeze Currencies

       

      ⬇️ iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App







       

      📖 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

      - AlyssaX64

       

      📷 Cheat Video/Screenshots

      N/A
      • 20 replies
×
  • 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