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

    • Digventure v0.0.2 [+4 Jailed Cheats]
      Modded/Hacked App: Digventure By Sergey Bedrosyants
      Bundle ID: com.moonfishgames.digventure
      App Store Link: https://apps.apple.com/ph/app/digventure/id6450215899?uo=4



      🤩 Hack Features

      - Free IAP
      - Never Dİe
      - Unlimited Jetpack Fuel
      - Unlimited Currency
      • 0 replies
    • Digventure v0.0.2 [+4 Cheats]
      Modded/Hacked App: Digventure By Sergey Bedrosyants
      Bundle ID: com.moonfishgames.digventure
      App Store Link: https://apps.apple.com/ph/app/digventure/id6450215899?uo=4



      🤩 Hack Features

      - Free IAP
      - Never Dİe
      - Unlimited Jetpack Fuel
      - Unlimited Currency

      • 1 reply
    • Pickaxe King Island v222 +4 Jailed Cheats [ Unlimited Everything ]
      Modded/Hacked App: Pickaxe King Island By ROGUE UNION GAMES
      Bundle ID: com.rogueuniongames.pickaxekingisland
      App Store Link: https://apps.apple.com/us/app/pickaxe-king-island/id6738040300?uo=4

       


      🤩 Hack Features

      - God Mode
      - One-Hit Kill
      - Unlimited Everything -> Will increase instead of decrease.
      - Free Shopping
        • Thanks
        • Like
      • 9 replies
    • Pickaxe King Island v222 +4 Cheats [ Unlimited Everything ]
      Modded/Hacked App: Pickaxe King Island By ROGUE UNION GAMES
      Bundle ID: com.rogueuniongames.pickaxekingisland
      App Store Link: https://apps.apple.com/us/app/pickaxe-king-island/id6738040300?uo=4

       
       

      🤩 Hack Features

      - God Mode
      - One-Hit Kill
      - Unlimited Everything -> Will increase instead of decrease.
      - Free Shopping
        • Thanks
        • Like
      • 3 replies
    • Hunt Royale: Action RPG Battle v3.13.1 +3 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Hunt Royale: Action RPG Battle By BoomBit, Inc.
      Bundle ID: com.hunt.royale
      iTunes Store Link: https://apps.apple.com/us/app/hunt-royale-action-rpg-battle/id1537379121?uo=4

       
       

      🚀 Hack Features

      - Dumb Enemies

      VIP
      - Damage Multiplier
      - Defence Multiplier
        • Informative
        • Haha
        • Like
      • 165 replies
    • Eterspire - Fantasy MMORPG v56.0 +2 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Eterspire - Fantasy MMORPG By Stonehollow Workshop LLC
      Bundle ID: com.stonehollow-workshop.Eterspire
      iTunes Store Link: https://apps.apple.com/us/app/eterspire-fantasy-mmorpg/id1658183817?uo=4

       
       

      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
        • Informative
        • Agree
        • Like
      • 29 replies
    • Eterspire - Fantasy MMORPG v56.0 +2 Cheats [ Damage & Defence ]
      Modded/Hacked App: Eterspire - Fantasy MMORPG By Stonehollow Workshop LLC
      Bundle ID: com.stonehollow-workshop.Eterspire
      iTunes Store Link: https://apps.apple.com/us/app/eterspire-fantasy-mmorpg/id1658183817?uo=4

       
       

      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
        • Agree
        • Thanks
        • Winner
        • Like
      • 111 replies
    • Hunt Royale: Action RPG Battle v3.13.1 +3 Cheats [ Damage & Defence ]
      Modded/Hacked App: Hunt Royale: Action RPG Battle By BoomBit, Inc.
      Bundle ID: com.hunt.royale
      iTunes Store Link: https://apps.apple.com/us/app/hunt-royale-action-rpg-battle/id1537379121?uo=4

       


      🚀 Hack Features

      - Dumb Enemies

      VIP
      - Damage Multiplier
      - Defence Multiplier
        • Thanks
        • Like
      • 25 replies
    • Royal Kingdom v20584 +4 Jailed Cheats [ Coins + More ]
      Modded/Hacked App: Royal Kingdom By Dream Games
      Bundle ID: com.dreamgames.royalkingdom
      iTunes Store Link: https://apps.apple.com/ph/app/royal-kingdom/id1606549505
       

      Hack Features:
      - Freeze Coins
      - Freeze Lives
      - Freeze Boosters
      - Freeze Moves


      Jailbreak required hack(s): [Mod Menu Hack] Royal Kingdom v3987 +4 Cheats [ Unlimited Coins ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 143 replies
    • Royal Kingdom v20584 +4 Cheats [ Coins + More ]
      Modded/Hacked App: Royal Kingdom By Dream Games
      Bundle ID: com.dreamgames.royalkingdom
      iTunes Store Link: https://apps.apple.com/ph/app/royal-kingdom/id1606549505
       

      Hack Features:
      - Freeze Coins
      - Freeze Lives
      - Freeze Boosters
      - Freeze Moves


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Royal Kingdom v3987 +4 Jailed Cheats [ Unlimited Coins ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 92 replies
    • Royal Match v30319 +10 Jailed Cheats [ Coins + More ]
      Modded/Hacked App: Royal Match By Dream Games Teknoloji Anonim Sirketi
      Bundle ID: com.dreamgames.royalmatch
      iTunes Store Link: https://apps.apple.com/us/app/royal-match/id1482155847?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Freeze Coins
      - Freeze Lives
      - Freeze Stars
      - Freeze Boosters
      - Freeze Time
      - Freeze Moves
      - Unlock VIP Badges
      - Unlock VIP Name Styles
      - Unlock VIP Frames
      - Auto Win -> Quit the level.


      Jailbreak required hack(s): [Mod Menu Hack] Royal Match v26455 +11 Cheats [ Unlimited Coins + More ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 401 replies
    • Royal Match v30319 +10 Cheats [ Coins + More ]
      Modded/Hacked App: Royal Match By Dream Games Teknoloji Anonim Sirketi
      Bundle ID: com.dreamgames.royalmatch
      iTunes Store Link: https://apps.apple.com/us/app/royal-match/id1482155847?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:
      - Freeze Coins
      - Freeze Lives
      - Freeze Stars
      - Freeze Boosters
      - Freeze Time
      - Freeze Moves
      - Unlock VIP Badges
      - Unlock VIP Name Styles
      - Unlock VIP Frames
      - Auto Win -> Quit the level.


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] Royal Match v26455 +11 Jailed Cheats [ Unlimited Coins + More ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 504 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