This guide will help you understand and edit your R.E.P.O. game save file even if you're not familiar with JSON files.
Your save file is in JSON format, which is organized as:
are grouped togetherCritical: Several fields must be edited together to maintain consistency:
itemsPurchased, you must also update itemsPurchasedTotalitemsPurchasedTotal is equal to or greater than itemsPurchaseditemsUpgradesPurchased, make sure to update related player stat fields if presentitem section should be consistent with their battery levels in itemStatBatteryitemsPurchased and itemsPurchasedTotalWhat they are:
itemsPurchased: Your current inventory of itemsitemsPurchasedTotal: Historical record of all items ever purchasedHow to edit together:
"itemsPurchased": {
"Item Grenade Explosive": 5, // Changed from 1 to 5
},
"itemsPurchasedTotal": {
"Item Grenade Explosive": 10, // Must be at least 5 (the value in itemsPurchased)
},itemsUpgradesPurchasedWhat it is: How many upgrades you've applied to each upgrade-type item.
How to edit:
Example:
"itemsUpgradesPurchased": {
"Item Upgrade Player Health": 10, // Changed from 7 to 10
"Item Upgrade Player Energy": 11,
},itemBatteryUpgradesWhat it is: Tracks battery upgrade levels for battery-powered items.
How to edit:
Example:
"itemBatteryUpgrades": {
"Item Drone Battery": 2, // Changed from 0 to 2
},itemStatBatteryWhat it is: Battery charge percentage for specific item instances.
How to edit:
Example:
"itemStatBattery": {
"Item Drone Battery/1": 100, // Changed from 99 to 100
},itemWhat it is: Tracks individual item instances in the game world.
This section is complex and best left unchanged unless you know what you're doing.
Let's say you want to give yourself 5 explosive grenades:
itemsPurchased section"Item Grenade Explosive": 1, to "Item Grenade Explosive": 5,itemsPurchasedTotal section"Item Grenade Explosive" is at least 5, if not make it 5 or higher"itemsPurchased": {
// Other items...
"Item Grenade Explosive": 5, // Changed from 1 to 5
// Other items...
},
"itemsPurchasedTotal": {
// Other items...
"Item Grenade Explosive": 10, // Must be at least 5
// Other items...
},If you want to max out your health upgrades:
itemsUpgradesPurchased section"Item Upgrade Player Health": 7, to "Item Upgrade Player Health": 11,"itemsUpgradesPurchased": {
// Other items...
"Item Upgrade Player Health": 11, // Changed from 7 to 11
// Other items...
},
"playerUpgradeHealth": {
"76561198024378942": 7, // Update this if needed
"76561198078417480": 7 // Update this if needed
}Remember: If your save file stops working after editing, restore from your backup and try again with more modest changes.