Have you lost your gaming progress after switching to a new computer? This guide will show you how to recover your progress, as long as one of you still has the original save file. Keep reading to find out how to get back to where you left off with your friend in BOKURA.
Introduction
If you have for any reason lost your save file, even if you play with the same friend you will have to start from scratch and replay all the levels until you get back to where you originally were. This guide covers how you can edit your save file so that you can recover any lost progress
DISCLAIMER1: This could be abused to skip levels and progress past where you are supposed to be in the game. I DO NOT RECOMMEND OR ENDORSE anyone using this guide in such a malicious way. The game is relatively simple and it comes from an indie developer, please play it as intended and only use this if you lost progress you already had with your friend.
DISCLAIMER2: We are directly editing the game’s save file. Editing stuff you shouldn’t may break the game or corrupt your save. I strongly recommend that you backup all game files before doing any of the steps in this guide so that you don’t completely ruin your game if anything goes wrong.
Finding the save file
- Press Windows key + R
- Type %appdata% and hit enter
- You will be under the ‘Roaming’ folder. Go back one folder and then go to:
LocalLow > tokoronyori > Bokura
We are looking for a file named “SaveFile.es3”. We will leave this unchanged for player B, but B’s file will work as a guideline for us to edit A’s save.
Editing the save file
The saves in this game are stored in a JSON-like format, meaning everything is stored in a ‘key’: ‘value’ format. First, find your User ID. This will be something like:
“UNIQUE_ID” : {
“__type” : “int”,
“value” : 123456
}
Progress is stored using the format [PLAYER1_ID]_[PLAYER2_ID]_[PROGRESS]. Here ‘Player 1’ would be whoever created the room when you first played together, but as far as I can tell you can change the order without any negative effects.
As an example, the choice between going with the robot world or with the animal world is stored as
“123456_789123_SELECT_CHARACTER” : {
“__type” : “bool”,
“value” : true
}
If you have played with multiple people, you will see ‘duplicated’ keys because each of them will be associated with a separate play-through.
Now, what causes progress to be lost is that your player ID may change when you switch computers/reinstall the game. Go to Player B’s save file and use any of the progress markers to find what Player A’s original ID was. Following the previous examples, if B’s ID is 123456, then from the ‘SELECT_CHARACTER’ progress marker we can see that A’s ID used to be 789123. Go to A’s save file and replace the UNIQUE_ID using this value.
Now, using B’s save file as a guide, you want to copy all progress markers and paste them in A’s save file. Pay attention that you don’t miss any comma or brackets as that would break the file.
One particular case is for the SELECT_CHARACTER marker. This will be different for each of the two players! Setting the value to ‘true’ gives the player the robot world, and setting it to ‘false’ will give the animal world. Edit this according to which world you picked in the original gameplay.
Lastly, you will also see a READEVENT key in the save file. The value stored here keeps track of all the events you have seen in game. Copy Player B’s value and use it to replace A’s value.
Final remarks
If you run into any issues or would like to add anything to the guide that you believe I have missed, please don’t be afraid to reach out!
And that wraps up our share on BOKURA: How to recover your save progress after uninstalling/switching PC. If you have any additional insights or tips to contribute, don’t hesitate to drop a comment below. For a more in-depth read, you can refer to the original article here by EnzoAM, who deserves all the credit. Happy gaming!