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

    • Solitaire Grand Harvest v2.399.1 [ +4 Cheats ] Currency Max
      Modded/Hacked App: Solitaire Grand Harvest By Supertreat GmbH
      Bundle ID: net.supertreat.solitaire
      App Store Link: https://apps.apple.com/us/app/solitaire-grand-harvest/id1223338261?uo=4


      🤩 Hack Features

      - Coins
      - Free Ticket
      - Free Undo
      - Wild Card
        • Haha
        • Thanks
        • Winner
        • Like
      • 27 replies
    • Solitaire Grand Harvest v2.399.1 [ +4 Jailed ] Currency Max
      Modded/Hacked App: Solitaire Grand Harvest By Supertreat GmbH
      Bundle ID: net.supertreat.solitaire
      App Store Link: https://apps.apple.com/us/app/solitaire-grand-harvest/id1223338261?uo=4


      🤩 Hack Features

      - Coins
      - Free Ticket
      - Free Undo
      - Wild Card
        • Informative
        • Agree
        • Like
      • 27 replies
    • Galaxiga - Classic 80s Arcade v10.99 [ +7 Jailed ] Energy Max
      Modded/Hacked App: Galaxiga - Classic 80s Arcade By ONESOFT GLOBAL PTE. LTD.
      Bundle ID: com.os.space.force.galaxy.alien
      iTunes Store Link: https://apps.apple.com/us/app/galaxiga-classic-80s-arcade/id1519367184?uo=4


      Hack Features:

      - Premium Pass [ Rewards Only ]

      - Energy Unlimited [ Linked Premium Pass ]

      - Plane Unlocked [ Tire 1 Tire 2 ] 

      - Drone Unlocked [ Tire 1 Tire 2 ]

      - Stone Unlocked [ Tire 1 Tire 2 ] 

      - Unlock Gem Cost 0 [ Plane Drone Stone ]

      - Easy Kill [ Only SP - No PVP ] 

      - Win PvP Select Higher Rank [ Plane Drone Stone ] Easy To Win PvP NO Bannnn


      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Agree
        • Thanks
        • Winner
        • Like
      • 57 replies
    • Galaxiga - Classic 80s Arcade v10.99 [ +7 Cheats ] Energy Max
      Modded/Hacked App: Galaxiga - Classic 80s Arcade By ONESOFT GLOBAL PTE. LTD.
      Bundle ID: com.os.space.force.galaxy.alien
      iTunes Store Link: https://apps.apple.com/us/app/galaxiga-classic-80s-arcade/id1519367184?uo=4


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


      Hack Features:
      - Premium Pass [ Rewards Only ]

      - Energy Unlimited [ Linked Premium Pass ]

      - Plane Unlocked [ Tire 1 Tire 2 ] 

      - Drone Unlocked [ Tire 1 Tire 2 ]

      - Stone Unlocked [ Tire 1 Tire 2 ] 

      - Unlock Gem Cost 0 [ Plane Drone Stone ] Maybe Effect PvP 

      - Easy Kill [ Only SP - No PVP ] 

      - Win PvP Select Higher Rank [ Plane Drone Stone ]

      Not3:- Don't Abuse The Hack Incase Banned Lower Chances Maybe


      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
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 91 replies
    • Shiba Story Go! RPG Idle Game v1.1.116 [ +12 Jailed ] Always Win
      Modded/Hacked App: Shiba Story Go! RPG Idle Game By Proof of Play, Inc.
      Bundle ID: com.proofofplay.shibastorygo
      App Store Link: https://apps.apple.com/ph/app/shiba-story-go-rpg-idle-game/id6749783343?uo=4 

      🤩 Hack Features

      - Gems

      - Gold

      - Energy

      - Keys+3

      - Enhance Items

      - Pet Egg

      - Chest Max [ Server Error Show Some Time But Works ]

      - Fast Travel Energy Cost 1

      - Enemy Easy Kill [ Both Of Linked ] Server Error Show Some Time

      - Alway My Turn

      - HP [ Enemy Easy Kill + Alway My Turn ] Disable Then Use This Feature

      - ATK

      - DEF
        • Like
      • 6 replies
    • Shiba Story Go! RPG Idle Game v1.1.116 [ +12 Cheats ] Always Win
      Modded/Hacked App: Shiba Story Go! RPG Idle Game By Proof of Play, Inc.
      Bundle ID: com.proofofplay.shibastorygo
      App Store Link: https://apps.apple.com/ph/app/shiba-story-go-rpg-idle-game/id6749783343?uo=4

      🤩 Hack Features

      - Gems

      - Gold

      - Energy

      - Keys+3

      - Enhance Items

      - Pet Egg

      - Chest Max [ Server Error Show Some Time But Works ]

      - Fast Travel Energy Cost 1

      - Enemy Easy Kill [ Both Of Linked ] Server Error Show Some Time

      - Alway My Turn

      - HP [ Enemy Easy Kill + Alway My Turn ] Disable Then Use This Feature

      - ATK

      - DEF
        • Like
      • 7 replies
    • Rick and Morty: Pocket Mortys Cheats v2.40.0 +1
      Modded/Hacked App: Rick and Morty: Pocket Mortys By Turner Broadcasting System, Inc.
      Bundle ID: com.turner.pocketmorties
      iTunes Store Link: https://apps.apple.com/us/app/rick-and-morty-pocket-mortys/id992640880?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

      - Freeze Currencies

       

      Non-Jailbroken Hack: https://iosgods.com/topic/86695-rick-and-morty-pocket-mortys-v2380-jailed-cheats-1/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/89871-rick-and-morty-pocket-mortys-cheats-v2380-1/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 629 replies
    • Hello Town: Merge & Succeed v2.7 [ +3 Cheats ] Currency Max
      Modded/Hacked App: Hello Town By Springcomes Co., Ltd.
      Bundle ID: com.spcomes.hellotown
      iTunes Store Link: https://apps.apple.com/us/app/hello-town/id6737850281?uo=4


      Hack Features

      - Diamonds
      - Gold
      - Energy Freeze



      For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
        • Agree
        • Thanks
        • Winner
        • Like
      • 21 replies
    • Hello Town: Merge & Succeed v2.7 [ +3 Jailed ] Currency Max
      Modded/Hacked App: Hello Town By Springcomes Co., Ltd.
      Bundle ID: com.spcomes.hellotown
      iTunes Store Link: https://apps.apple.com/us/app/hello-town/id6737850281?uo=4

       

      Hack Features

      - Diamonds
      - Gold
      - Energy Freeze



      Jailbreak required iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APKs: https://iosgods.com/forum/68-android-section/
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 23 replies
    • Loadout Warrior v2.3.6 [ +5 Jailed ] ADS NO
      Modded/Hacked App: Loadout Warrior By MobGame Pte. LTD
      Bundle ID: com.mobgame.loadout.warrior
      iTunes Store Link: https://apps.apple.com/us/app/loadout-warrior/id6743389761?uo=4
       

      🤩 Hack Features

      - ADS NO [ Rewards Free ]

      - Battle Coins

      - HP

      - ATK

      - ATK CD
        • Informative
        • Like
      • 13 replies
    • Loadout Warrior v2.3.6 [ +5 Cheats ] ADS NO
      Modded/Hacked App: Loadout Warrior By MobGame Pte. LTD
      Bundle ID: com.mobgame.loadout.warrior
      iTunes Store Link: https://apps.apple.com/us/app/loadout-warrior/id6743389761?uo=4
       

      🤩 Hack Features

      - ADS NO [ Rewards Free ]

      - Battle Coins

      - HP

      - ATK

      - ATK CD
        • Thanks
        • Winner
        • Like
      • 7 replies
    • Pop Island v1.2.1 [ +1 Cheats ] Coins Max
      Modded/Hacked App: Pop Island By HISTAR INTERACTIVE PTE. LTD.
      Bundle ID: com.hmbdgames.match
      iTunes Store Link: https://apps.apple.com/us/app/pop-island/id6505047210?uo=4


      🤩 Hack Features

      - Coins [ Win Match Disable After Hack ]


        • Agree
        • Like
      • 22 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