Jump to content

8 posts in this topic

Recommended Posts

Posted (edited)

Hey, i'm making a save-editor in my free time. For now, it can only read your inventory (armour, weapons, gold, scrolls, diamonds, barrel and etc..).

It will work by inputing the "com.cobby.lonelysurvivor.plist" file in the software.

Sneak peek:

Inventory.png

*If i'm inflicting some rule, i'm sorry. First post.

 

If you have a file editor, you can edit it by yourself.

1) Go to the file location (var/mobile/Containers/Data/Application/Lonely Survivor/Library/Preferences/com.cobby.lonelysurvivor.plist)

2) Find the key "GAME_DATA".

3) To edit simple itens, go to "itemData".

<key>GAME_DATA</key>
	<string>{"itemData":{"10":402,"13":8,"23":144,"11":85,"21":84,"35":94,"37":77960,"18":1160,"9":391,"8":4589,"7":396,"6":7,"5":415,"4":197,"3":348534,"2":61070,"1":2685991,"36":745,"1000":102,"43":950,"42":999974,"1001":102,"24":939,"22":92,"12":11},..........
Known ID's:	       
'1':"Coins",
'2':"Diamonds",
'4':"Stamina",
'5':"Weapon Scroll",
'6':"Helmet Scroll",
'7':"Gauntlets Scroll",
'8':"Shield Scroll",
'9':"Cloth Scroll",
'10':"Shoes Scroll",
'11':"Talent Upgrade?",
'12':"Key Normal Treasure Chest",
'13':"Key Epic Treasure Chest",
'21':"Steel barrel",
'22':"Silver barrel",
'23':"Gold barrel",
'24':"Diamond barrel",
'35':"Hero EXP",
'42':"Dice from event",
'1000':"Hero Ruby Ascend Shard",
'1001':"Hero Boney Ascend Shard",
'1002':"Hero Lv Bu Ascend Shard ?"

4) As for Armour and weapons, the tag is "equipData":

"equipData":{"378":{"lv":1,"eid":378,"id":50404},"654":{"lv":1,"eid":654,"id":50102},"754":{"id":20301,"eid":754,"lv":1},"778":{"id":60502,"eid":778,"lv":1},"678":{"lv":1,"eid":678,"id":50203},
  • the first tag (Ex: "378") is the slot.
  • "lv" is the level of the item.
  • "eid" is the slot (yeah, again).
  • "id" is what determines the type of the item, the variety and the rarity. 

           Ex:{ "378":{"lv":1,"eid":378,"id":50404},.....

                "id": 50404

                5     04     04

  1. The first digit is the type ( 1 is weapon, 2 is helmet, 3 is Gauntlets, 4 is Shield, 5 is Armour, 6 is Shoes)
  2. The second and third is the variety of the item (Agility, lightning)
  3. the last two digits is the rarity (Rare, Legend, Mythic ... etc)
Known rarity:
'01':"Normal",
'02':"Excellent",
'03':"Rare",
'04':"Epic",
'05':"Epic (1)",
'06':"Epic (2)",
'07':"Legendary",
'08':"Legendary (1)",
'09':"Legendary (2)",
'10':"Legendary (3)",
'11':"Mythic",
'12':"Mythic (1)",
'13':"Mythic (2)",
'14':"Mythic (3)"

5) Edit as you like, save and then open the game.

 

Important: As any type of modification, you can be banned.

Updated by kalffman
Additional information
  • Like 1
  • Informative 1
Posted
On 10/2/2022 at 9:15 PM, kalffman said:

Hey, i'm making a save-editor in my free time. For now, it can only read your inventory (armour, weapons, gold, scrolls, diamonds, barrel and etc..).

It will work by inputing the "com.cobby.lonelysurvivor.plist" file in the software.

Sneak peek:

Inventory.png

*If i'm inflicting some rule, i'm sorry. First post.

 

If you have a file editor, you can edit it by yourself.

1) Go to the file location (var/mobile/Containers/Data/Application/Lonely Survivor/Library/Preferences/com.cobby.lonelysurvivor.plist)

2) Find the key "GAME_DATA".

3) To edit simple itens, go to "itemData".

<key>GAME_DATA</key>
	<string>{"itemData":{"10":402,"13":8,"23":144,"11":85,"21":84,"35":94,"37":77960,"18":1160,"9":391,"8":4589,"7":396,"6":7,"5":415,"4":197,"3":348534,"2":61070,"1":2685991,"36":745,"1000":102,"43":950,"42":999974,"1001":102,"24":939,"22":92,"12":11},..........
Known ID's:	       
'1':"Coins",
'2':"Diamonds",
'4':"Stamina",
'5':"Weapon Scroll",
'6':"Helmet Scroll",
'7':"Gauntlets Scroll",
'8':"Shield Scroll",
'9':"Cloth Scroll",
'10':"Shoes Scroll",
'11':"Talent Upgrade?",
'12':"Key Normal Treasure Chest",
'13':"Key Epic Treasure Chest",
'21':"Steel barrel",
'22':"Silver barrel",
'23':"Gold barrel",
'24':"Diamond barrel",
'35':"Hero EXP",
'42':"Dice from event",
'1000':"Hero Ruby Ascend Shard",
'1001':"Hero Boney Ascend Shard",
'1002':"Hero Lv Bu Ascend Shard ?"

4) As for Armour and weapons, the tag is "equipData":

"equipData":{"378":{"lv":1,"eid":378,"id":50404},"654":{"lv":1,"eid":654,"id":50102},"754":{"id":20301,"eid":754,"lv":1},"778":{"id":60502,"eid":778,"lv":1},"678":{"lv":1,"eid":678,"id":50203},
  • the first tag (Ex: "378") is the slot.
  • "lv" is the level of the item.
  • "eid" is the slot (yeah, again).
  • "id" is what determines the type of the item, the variety and the rarity. 

           Ex:{ "378":{"lv":1,"eid":378,"id":50404},.....

                "id": 50404

                5     04     04

  1. The first digit is the type ( 1 is weapon, 2 is helmet, 3 is Gauntlets, 4 is Shield, 5 is Armour, 6 is Shoes)
  2. The second and third is the variety of the item (Agility, lightning)
  3. the last two digits is the rarity (Rare, Legend, Mythic ... etc)
Known rarity:
'01':"Normal",
'02':"Excellent",
'03':"Rare",
'04':"Epic",
'05':"Epic (1)",
'06':"Epic (2)",
'07':"Legendary",
'08':"Legendary (1)",
'09':"Legendary (2)",
'10':"Legendary (3)",
'11':"Mythic",
'12':"Mythic (1)",
'13':"Mythic (2)",
'14':"Mythic (3)"

5) Edit as you like, save and then open the game.

 

Important: As any type of modification, you can be banned.

How to clip?? Pls

Posted
On 10/2/2022 at 3:15 PM, kalffman said:

Hey, i'm making a save-editor in my free time. For now, it can only read your inventory (armour, weapons, gold, scrolls, diamonds, barrel and etc..).

It will work by inputing the "com.cobby.lonelysurvivor.plist" file in the software.

Sneak peek:

Inventory.png

*If i'm inflicting some rule, i'm sorry. First post.

 

If you have a file editor, you can edit it by yourself.

1) Go to the file location (var/mobile/Containers/Data/Application/Lonely Survivor/Library/Preferences/com.cobby.lonelysurvivor.plist)

2) Find the key "GAME_DATA".

3) To edit simple itens, go to "itemData".

<key>GAME_DATA</key>
	<string>{"itemData":{"10":402,"13":8,"23":144,"11":85,"21":84,"35":94,"37":77960,"18":1160,"9":391,"8":4589,"7":396,"6":7,"5":415,"4":197,"3":348534,"2":61070,"1":2685991,"36":745,"1000":102,"43":950,"42":999974,"1001":102,"24":939,"22":92,"12":11},..........
Known ID's:	       
'1':"Coins",
'2':"Diamonds",
'4':"Stamina",
'5':"Weapon Scroll",
'6':"Helmet Scroll",
'7':"Gauntlets Scroll",
'8':"Shield Scroll",
'9':"Cloth Scroll",
'10':"Shoes Scroll",
'11':"Talent Upgrade?",
'12':"Key Normal Treasure Chest",
'13':"Key Epic Treasure Chest",
'21':"Steel barrel",
'22':"Silver barrel",
'23':"Gold barrel",
'24':"Diamond barrel",
'35':"Hero EXP",
'42':"Dice from event",
'1000':"Hero Ruby Ascend Shard",
'1001':"Hero Boney Ascend Shard",
'1002':"Hero Lv Bu Ascend Shard ?"

4) As for Armour and weapons, the tag is "equipData":

"equipData":{"378":{"lv":1,"eid":378,"id":50404},"654":{"lv":1,"eid":654,"id":50102},"754":{"id":20301,"eid":754,"lv":1},"778":{"id":60502,"eid":778,"lv":1},"678":{"lv":1,"eid":678,"id":50203},
  • the first tag (Ex: "378") is the slot.
  • "lv" is the level of the item.
  • "eid" is the slot (yeah, again).
  • "id" is what determines the type of the item, the variety and the rarity. 

           Ex:{ "378":{"lv":1,"eid":378,"id":50404},.....

                "id": 50404

                5     04     04

  1. The first digit is the type ( 1 is weapon, 2 is helmet, 3 is Gauntlets, 4 is Shield, 5 is Armour, 6 is Shoes)
  2. The second and third is the variety of the item (Agility, lightning)
  3. the last two digits is the rarity (Rare, Legend, Mythic ... etc)
Known rarity:
'01':"Normal",
'02':"Excellent",
'03':"Rare",
'04':"Epic",
'05':"Epic (1)",
'06':"Epic (2)",
'07':"Legendary",
'08':"Legendary (1)",
'09':"Legendary (2)",
'10':"Legendary (3)",
'11':"Mythic",
'12':"Mythic (1)",
'13':"Mythic (2)",
'14':"Mythic (3)"

5) Edit as you like, save and then open the game.

 

Important: As any type of modification, you can be banned.

That's some dope sh!t.

Posted

It used to work in the Japanese version as well.  

However, after the correction update.

it does not accept changes to the plist file, probably because the check for data alteration has become stricter.

I'm trying to find out if there's a workaround, but unfortunately it's not possible yet.  

Let's share our knowledge and do our best.

Posted
On 10/2/2022 at 9:15 PM, kalffman said:

Hey, i'm making a save-editor in my free time. For now, it can only read your inventory (armour, weapons, gold, scrolls, diamonds, barrel and etc..).

It will work by inputing the "com.cobby.lonelysurvivor.plist" file in the software.

Sneak peek:

Inventory.png

*If i'm inflicting some rule, i'm sorry. First post.

 

If you have a file editor, you can edit it by yourself.

1) Go to the file location (var/mobile/Containers/Data/Application/Lonely Survivor/Library/Preferences/com.cobby.lonelysurvivor.plist)

2) Find the key "GAME_DATA".

3) To edit simple itens, go to "itemData".

<key>GAME_DATA</key>
	<string>{"itemData":{"10":402,"13":8,"23":144,"11":85,"21":84,"35":94,"37":77960,"18":1160,"9":391,"8":4589,"7":396,"6":7,"5":415,"4":197,"3":348534,"2":61070,"1":2685991,"36":745,"1000":102,"43":950,"42":999974,"1001":102,"24":939,"22":92,"12":11},..........
Known ID's:	       
'1':"Coins",
'2':"Diamonds",
'4':"Stamina",
'5':"Weapon Scroll",
'6':"Helmet Scroll",
'7':"Gauntlets Scroll",
'8':"Shield Scroll",
'9':"Cloth Scroll",
'10':"Shoes Scroll",
'11':"Talent Upgrade?",
'12':"Key Normal Treasure Chest",
'13':"Key Epic Treasure Chest",
'21':"Steel barrel",
'22':"Silver barrel",
'23':"Gold barrel",
'24':"Diamond barrel",
'35':"Hero EXP",
'42':"Dice from event",
'1000':"Hero Ruby Ascend Shard",
'1001':"Hero Boney Ascend Shard",
'1002':"Hero Lv Bu Ascend Shard ?"

4) As for Armour and weapons, the tag is "equipData":

"equipData":{"378":{"lv":1,"eid":378,"id":50404},"654":{"lv":1,"eid":654,"id":50102},"754":{"id":20301,"eid":754,"lv":1},"778":{"id":60502,"eid":778,"lv":1},"678":{"lv":1,"eid":678,"id":50203},
  • the first tag (Ex: "378") is the slot.
  • "lv" is the level of the item.
  • "eid" is the slot (yeah, again).
  • "id" is what determines the type of the item, the variety and the rarity. 

           Ex:{ "378":{"lv":1,"eid":378,"id":50404},.....

                "id": 50404

                5     04     04

  1. The first digit is the type ( 1 is weapon, 2 is helmet, 3 is Gauntlets, 4 is Shield, 5 is Armour, 6 is Shoes)
  2. The second and third is the variety of the item (Agility, lightning)
  3. the last two digits is the rarity (Rare, Legend, Mythic ... etc)
Known rarity:
'01':"Normal",
'02':"Excellent",
'03':"Rare",
'04':"Epic",
'05':"Epic (1)",
'06':"Epic (2)",
'07':"Legendary",
'08':"Legendary (1)",
'09':"Legendary (2)",
'10':"Legendary (3)",
'11':"Mythic",
'12':"Mythic (1)",
'13':"Mythic (2)",
'14':"Mythic (3)"

5) Edit as you like, save and then open the game.

 

Important: As any type of modification, you can be banned.

 

Do you have any way to make it works with the current version? When I restore the game data it always detect as new account and won't use the restored (modified file).

Posted
On 10/9/2022 at 4:29 PM, rakana said:

It used to work in the Japanese version as well.  

However, after the correction update.

it does not accept changes to the plist file, probably because the check for data alteration has become stricter.

I'm trying to find out if there's a workaround, but unfortunately it's not possible yet.  

Let's share our knowledge and do our best.

@rakana Hi bro !

Sorry to bother you, have you found another way to sync the newly added data recently?

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

    • Margonem Adventures v1.16.1 [+3 Jailed Cheats]
      Modded/Hacked App: Margonem Adventures By GARMORY sp. z o.o. sp. k.
      Bundle ID: pl.Garmory.MargonemAdventures
      iTunes Store Link: https://apps.apple.com/us/app/margonem-adventures/id6444410609?uo=4

       

      🤩 Hack Features

      - Enemy Can't Move
      - Enemy Can't Attack
      - Unlimited Mana
      • 16 replies
    • Margonem Adventures v1.16.1 [+3 Cheats]
      Modded/Hacked App: Margonem Adventures By GARMORY sp. z o.o. sp. k.
      Bundle ID: pl.Garmory.MargonemAdventures
      iTunes Store Link: https://apps.apple.com/us/app/margonem-adventures/id6444410609?uo=4



      🤩 Hack Features

      - Enemy Can't Move
      - Enemy Can't Attack
      - Unlimited Mana
        • Informative
        • Like
      • 10 replies
    • Survivor Code: Last Stand v1.0.5 [+3 Cheats]
      Modded/Hacked App: Survivor Code: Last Stand By TUONG PHAT ENVIROMENT AND TECHNOLOGY COMPANY LIMITED
      Bundle ID: com.survivor.hero.laststand
      App Store Link: https://apps.apple.com/us/app/survivor-code-last-stand/id6743934880?uo=4


      🤩 Hack Features

      - Never Die
      - Add Currency
      - Get No Ads
       
      • 4 replies
    • Survivor Code: Last Stand v1.0.5 [+3 Jailed Cheats]
      Modded/Hacked App: Survivor Code: Last Stand By TUONG PHAT ENVIROMENT AND TECHNOLOGY COMPANY LIMITED
      Bundle ID: com.survivor.hero.laststand
      App Store Link: https://apps.apple.com/us/app/survivor-code-last-stand/id6743934880?uo=4


      🤩 Hack Features

      - Never Die
      - Add Currency
      - Get No Ads
      • 4 replies
    • Idle Rabbit - Shooting Games v0.0.3 [ +18 Cheats ] Currency Max
      Modded/Hacked App: Idle Rabbit - Shooting Games By TrueIntrovertBeijingTechnology Co., Ltd
      Bundle ID: com.twopence.bunny
      App Store Link: https://apps.apple.com/ph/app/idle-rabbit-shooting-games/id6473819619?uo=4


      🤩 Hack Features

      - ADS NO [ Rewards Free ]

      - Gems

      - Coins

      - Moon Coins

      - Carrot Coins

      - Keys Golden

      - Keys Silver

      - Energy

      - Energy Cost 0

      - Free Growth Fund Unlock

      - Premium Growth Fund Unlock

      - Growth Fund Claim Unlimited

      - Equip Items

      - ATK

      - HP [ Linked With Battle Earn Some Skill ]

      - Bullet CD

      - Bullet Size

      - Bullet Speed
      • 0 replies
    • Idle Rabbit - Shooting Games v0.0.3 [ +18 Jailed ] Currency Max
      Modded/Hacked App: Idle Rabbit - Shooting Games By TrueIntrovertBeijingTechnology Co., Ltd
      Bundle ID: com.twopence.bunny
      App Store Link: https://apps.apple.com/ph/app/idle-rabbit-shooting-games/id6473819619?uo=4
       

      🤩 Hack Features

      - ADS NO [ Rewards Free ]

      - Gems

      - Coins

      - Moon Coins

      - Carrot Coins

      - Keys Golden

      - Keys Silver

      - Energy

      - Energy Cost 0

      - Free Growth Fund Unlock

      - Premium Growth Fund Unlock

      - Growth Fund Claim Unlimited

      - Equip Items

      - ATK

      - HP [ Linked With Battle Earn Some Skill ]

      - Bullet CD

      - Bullet Size

      - Bullet Speed
      • 0 replies
    • Townfall: Zombie Tower Defense v20.2.3 [+4 Cheats]
      Modded/Hacked App: Townfall: Zombie Tower Defense By Sugarscone
      Bundle ID: com.nmg.townfall.ios
      App Store Link: https://apps.apple.com/us/app/townfall-zombie-tower-defense/id6476259669?uo=4



      🤩 Hack Features

      - No Reload
      - Add Gold (Enable inside battle and finish stage)
      - Add Wood (Enable inside battle)
      - Skip Wave (Enable inside wave)
      • 10 replies
    • Townfall: Zombie Tower Defense v20.2.3 [+4 Jailed Cheats]
      Modded/Hacked App: Townfall: Zombie Tower Defense By Sugarscone
      Bundle ID: com.nmg.townfall.ios
      App Store Link: https://apps.apple.com/us/app/townfall-zombie-tower-defense/id6476259669?uo=4



      🤩 Hack Features

      - No Reload
      - Add Gold (Enable inside battle and finish stage)
      - Add Wood (Enable inside battle)
      - Skip Wave (Enable inside wave)
      • 15 replies
    • Tiny Gladiators 2 v2.4.9 +2 Jailed Cheats
      Modded/Hacked App: Tiny Gladiators 2 By BoomBit, Inc.
      Bundle ID: com.boombitgames.Tiny2
      App Store Link: https://apps.apple.com/us/app/tiny-gladiators-2/id1317268734?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

      - Damaeg Multiplier
      - Never Die

       

      ⬇️ 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
      • 1 reply
    • Tiny Gladiators 2 v2.4.9 +2 Cheats
      Modded/Hacked App: Tiny Gladiators 2 By BoomBit, Inc. v2.4.2
      Bundle ID: com.boombitgames.Tiny2
      iTunes Store Link: https://apps.apple.com/us/app/tiny-gladiators-2/id1317268734  


      Hack Features:
      1- 5x Damage
      2- god mode

      (More coming soon)

      This hack is an In-Game Mod Menu (iGMM). This hack works on the latest x64 or ARM64 iDevices: iPhone 5s, 6, 6 Plus, 6s, 6s Plus, 7, 7 Plus, 8, 8 Plus, X, Xr, Xs, Xs Max, SE, iPod Touch 6G, iPad Air, Air 2, Pro & iPad Mini 2, 3, 4 and later.
        • Thanks
      • 71 replies
    • Transcender : Idle RPG v1.5.9 +2 Cheats
      Modded/Hacked App: Transcender : Idle RPG By Rookie Project Co., Ltd.
      Bundle ID: com.playgames.transcender
      iTunes Store Link: https://apps.apple.com/sg/app/transcender-idle-rpg/id6448614350?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

      - Damage Multiplier
      - Never Die

       

      ⬇️ 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

      - AlyssaX64

       

      📷 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.
        • Like
      • 16 replies
    • Transcender : Idle RPG v1.5.9 +2 Jailed Cheats
      Modded/Hacked App: Transcender : Idle RPG By Rookie Project Co., Ltd.
      Bundle ID: com.playgames.transcender
      iTunes Store Link: https://apps.apple.com/sg/app/transcender-idle-rpg/id6448614350?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
      - Never Die

       

      ⬇️ 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
      • 15 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