How to Merge Map Progress in Profiles for ETS2 and ATS – 2026 Guide
New game versions updates are here so we will also see the mods updates and it is perfect time to make you perfect profile.
In this guide I explain how to merge several profiles map discovery progress on example of merging vanilla 100% and Promods 87% profiles on ETS2 1.58. You can try this scheme on future versions in both ETS2 and ATS. Below you can find link to text version, tools and also ready strings used in this video.

Guide:
1. Reason
There are several reasons. The most common one:
You play vanilla + DLC on one profile. And you play mod maps like Promods or Roextended on another profile.
Keeping them separate is fine. But what if you want:
- Your 100% vanilla discovery
- Plus your mod map exploration
- Combined into one master profile
Another reason:
You created a new profile for TruckersMP or testing purposes. And later you want your original progress back
Or maybe you lost progress after an update and want to rebuild quickly.
In all these cases — merging discovered map items makes sense.
Important:
In this tutorial we are merging only discovered map items.
We are not merging:
- Garages
- Money
- Drivers
- Trucks
- XP
That is a completely different topic.
2. What Was the Problem With the Old Method?
My year-old guide is still mostly actual and you can still use Notepad++ or other editor but new guide can save you hours. Let me remind you that in every profile, discovered roads are stored in a strict indexed order inside the game.sii file.
If you simply copy part of the data:
- The order becomes incorrect
- Duplicate entries appear
- The profile may crash
- Or the game may behave unpredictably
And this becomes a serious problem because:
- Vanilla profiles contain thousands of discovered entries
- With map mods, this can grow dramatically
Manually fixing that with Notepad++ used to require:
- Regex
- Manual renumbering
- Removing duplicates
- Reindexing everything from zero
It worked — but it was slow and error-prone. So today we go another way. We automate the process using a Python script.
3. Make backups!
If you plan to modify game files always Make backups! This is extremely important.
Your profiles are located by default in: Documents/ETS2/profiles or Documents/ATS/profiles
Copy the entire profiles folder somewhere safe. If something goes wrong, you restore everything in seconds.
Disable Steam Cloud synchronization for all profiles involved. We cannot modify profiles that are stored only in Steam Cloud. After disabling Steam Cloud, profiles will be saved locally in the Documents folder.
4. Preparations and tools
As always for manipulations with the profiles we need several tools:
Truck Tools for save decryption – it is free of charge application you need to install to make various actions with you profiles in both games. You can also use your preferrable tools for game files decryption
https://trucksim.top/trucktools
Sublime Text – we need good text editor that allow us to run big files. While I use Sublime, you can use your preferable text editor like Notepad++ or even VS Code.
https://www.sublimetext.com
Python installed on your system – it will run my script. Python is also free of charge.
https://www.python.org/
The merge-discovered.py script – you can download the script for free
https://sharemods.com/uig6zgjgicrf/merge_discovered.zip.html
How to use Python?
1. Go to the official website: python.org
2. Download the latest stable version for Windows.
3. Run the installer.
⚠️ Very important: Before clicking “Install”, check the box: Add Python to PATH This is critical. If you skip this, the `python` command will not work in Command Prompt.
4. Click Install and wait.
5. That’s it.
How to Check If Python Is Installed?
Open Command Prompt and type: python –version or py –version
If you see something like: Python 3.x.x You’re ready to go.
If you see an error like “python is not recognized”, then:
Either Python is not installed
Or it was installed without adding to PATH. In that case, reinstall and check the PATH option.
Before starting
1. Make sure all profiles you plan to modify have Steam Cloud disabled.
2. If merging modded profiles, verify that all required mods are present in your mod folder.
3. Enable file decryption in config: g_save_format 2
4. Enable console: uset g_developer 1 and uset g_console 1
5. Make sure all profiles are from the same game version (don’t combine ATS profiles with ETS2 profiles and vice versa)
5. Prepare profiles
Enter each profile you want to merge.
Create a new save to identify them easily by timestamp.
Decrypt each profile using Truck Tools.
Inside each profile, locate the file: game.sii and copy them one by one to a new folder.
6. Merging Process
With the old method, you had to manually clean and reorder everything in Notepad++. With the new method, we only extract the necessary data in seconds.
Instead of manually:
Removing prefixes
Reordering numbers
Re-adding brackets
Generating incremental indices
Removing duplicates
We now use a Python script that:
Extracts all discovered item IDs
Removes duplicates automatically
Reorders them correctly
Recreates properly indexed discovered items entries
Outputs a ready-to-paste result
Shows you stats
Collect all game.sii files from desired profiles in one folder.
You can rename them as you wish, just make sure that they have .sii extension. Example profile3.sii or promods.sii etc.
Put the script merge_discovered.py to the same folder.
Open terminal or command prompt in the script folder (right click with Shift – Open Powershell window here) and type: python merge_discovered.py
or py merge_discovered.py
Press enter
The script will:
Detect all `.sii` files in the folder
Show how many items were found per file
Show total collected items
Show duplicates removed
Generate output file: merged_discovered.txt – fully indexed and ready to paste.
Then Open the target profile’s `game.sii (The profile in which we want to get results of merge)
Replace its `discovered_items` block with the newly generated one.
Save the file.
Open the save in the game.
Enjoy the results.
One known side effect
Recruitment agencies may not work properly after modifying discovered items. If you attempt to hire new drivers after merging, the game may crash.
Recommended workaround: Hire all drivers you need before modifying profiles.
Strings (just to start playing with profiles):
Promods 2.81 + Vanilla and all DLCs 1.58 (97% opened) shown on video: https://sharemods.com/52h3e9m8pz8y/merged_discovered.zip.html
Vanilla ATS 1.58: https://sharemods.com/9za32n2np5lz/trucksim-ats-158-full.zip.html (video guide: https://youtu.be/cyMA_ve4b0g)
Vanilla ETS2 1.57 (actual in 1.58) https://sharemods.com/qg0c06anedg6/trucksim-100-percent-febr-2026.zip.html (video guide: https://youtu.be/PEDznU4U7T0)
Roextended +Vanilla and all DLCs (outdated): https://sharemods.com/3lmagkhl784x/roex99percent_trucksim.txt.html
Promods 2.74 (99.9%, outdated) https://sharemods.com/njxw5ia2bwqb/promods-trucksim.zip.html (video:https://youtu.be/sZzEPyASnAM?si=RUmCuI5c0vzeHn59)
Merging profiles news
Since I’m merging discovered map sectors in my profiles periodically my old method with Notepad++ is time consuming and I decided to right a script to combine strings and generate list of unique values with proper sequence. Everyone can code today thanks to AI. So I’m planning to make updated guide which can help players with several different profiles and numerous map mods setups. The longest part of it for sure to create media, make a structure and do voiceover, so it will take time. Until that you can use my previous year-old guide which is still actual.

How to Merge Map Progress in Profiles for ETS2 and ATS – 2026 Guide
New game versions updates are here so we will also see the mods updates and it is perfect time to make you perfect profile.
In this guide I explain how to merge several profiles map discovery progress on example of merging vanilla 100% and Roextended 89% profiles on ETS2 1.53. You can try this scheme on 1.57 and in both ETS2 and ATS. I have currently 100% in US and bout 93% in Europe so below you can find links to ready strings to latest versions.

Guide:
1. Reason
Merge discovered items in two profiles let you have updated visited roads in the end even if you exploring maps on different profiles. Also when the new version of the game is being released you can again discover as much as possible and then merge with your old combined profile.
2. Preparations and tools
Download and install software we plan to use – TS SE Tool, Notepad++, make sure that you have mods in mod folder if you plan to merge mod’s profile, make sure that Steam cloud disable for all profiles which will be changed, check config file if you can decrypt game files (g_save_format 2) and can use console (uset g_developer 1, uset g_console 1) and so on.
3. Backup
Backup all the profiles to the separate drive before doing any manipulations.
4. Profiles job
Enter to the profiles you wish to merge and save game to locate desired profiles by timestamp. You should carefully pick correct profiles. Decrypt profiles one by one and open game.sii in each mergeable profile and copy all discovered items to new text file (in this file we will merge them). We can merge 2 or more profiles but don’t forget that it should be from the same version of the game.
5. Merge (most important part)
When all discovered items strings pasted to the text file we have to change the order of numbers – the way as game read each string. Start from removing left part of the string (discovered_items []: ) with Notepad ++ command Find and Replace (Ctrl+C). On the Find what enter discovered_items \[\d+\]: and keep blank on Replace with (we have to remove them). Do not forget check Regular Expression in Search Mode. Replace all and you will get list of numbers. On this step you can also remove duplicates. Now we have to return discovered_items []: text with empty brackets. Alt+C and choose Text to insert and place there discovered_items []: and push ok. On the next step we have to add numbers to the brackets with correct order from 0. Select all in bracket spots (Choose first one and with Alt+Shift select last one) and again Alt+C and choose Number to insert – Initial should be 0, increased by 1, format decimal. Push ok and wait. If you have lot of string it can take a while. When all numbers added to brackets we can remove redundant spaces. Now we can copy strings and paste them to the target profile where will me merged result.
6. Results we get
We have to see discovered roads from 2 or more profiles we combined.
7. Back to play Load from profile where strings added and if you see desired result you can back to game but please bare in mind that recruitment agencies are not gonna work with this method so if you want to hire drivers you game will probably crash. To avoid it hire drivers before profiles modifications.
Useful links:
TS SE Tool https://github.com/LIPtoH/TS-SE-Tool/releases/tag/v0.3.11.0
Notepad++ https://notepad-plus-plus.org
Strings:
Roextended +Vanilla and all DLCs (99% opened, outdated in 1.57) shown on video: https://sharemods.com/3lmagkhl784x/roex99percent_trucksim.txt.html
Vanilla ETS2 1.56 (outdated in 1.57): https://sharemods.com/830si08evgbs/trucksim_full_sept25.zip.html (video guide: https://youtu.be/-Cc1cZvTh1Q)
Vanilla ATS 1.57: https://sharemods.com/8pr2qvazt9aj/trucksim-100-percent-discovered-december2025.zip.html (video guide: https://youtu.be/rP5w6mrBUHc)
Promods 2.77 99.99% (outdated for 2.80) https://sharemods.com/75r1e5f70s5o/trucksim-99-promods.zip.html (video: https://youtu.be/35bCJ1vA6jE)

How to Merge Map Progress in Profiles for ETS2 and ATS – 2025 Guide
New game versions updates are here so we will also see the mods updates and it is perfect time to make you perfect profile.
In this guide I explain how to merge several profiles map discovery progress on example of merging vanilla 100% and Roextended 89% profiles on ETS2 1.53. You can try this scheme on 1.57 and in both ETS2 and ATS. Below you can find link to text version, tools and also ready strings used in this video (updated to 1.56).

Guide:
1. Reason
Merge discovered items in two profiles let you have updated visited roads in the end even if you exploring maps on different profiles. Also when the new version of the game is being released you can again discover as much as possible and then merge with your old combined profile.
2. Preparations and tools
Download and install software we plan to use – TS SE Tool, Notepad++, make sure that you have mods in mod folder if you plan to merge mod’s profile, make sure that Steam cloud disable for all profiles which will be changed, check config file if you can decrypt game files (g_save_format 2) and can use console (uset g_developer 1, uset g_console 1) and so on.
3. Backup
Backup all the profiles to the separate drive before doing any manipulations.
4. Profiles job
Enter to the profiles you wish to merge and save game to locate desired profiles by timestamp. You should carefully pick correct profiles. Decrypt profiles one by one and open game.sii in each mergeable profile and copy all discovered items to new text file (in this file we will merge them). We can merge 2 or more profiles but don’t forget that it should be from the same version of the game.
5. Merge (most important part)
When all discovered items strings pasted to the text file we have to change the order of numbers – the way as game read each string. Start from removing left part of the string (discovered_items []: ) with Notepad ++ command Find and Replace (Ctrl+C). On the Find what enter discovered_items \[\d+\]: and keep blank on Replace with (we have to remove them). Do not forget check Regular Expression in Search Mode. Replace all and you will get list of numbers. On this step you can also remove duplicates. Now we have to return discovered_items []: text with empty brackets. Alt+C and choose Text to insert and place there discovered_items []: and push ok. On the next step we have to add numbers to the brackets with correct order from 0. Select all in bracket spots (Choose first one and with Alt+Shift select last one) and again Alt+C and choose Number to insert – Initial should be 0, increased by 1, format decimal. Push ok and wait. If you have lot of string it can take a while. When all numbers added to brackets we can remove redundant spaces. Now we can copy strings and paste them to the target profile where will me merged result.
6. Results we get
We have to see discovered roads from 2 or more profiles we combined.
7. Back to play Load from profile where strings added and if you see desired result you can back to game but please bare in mind that recruitment agencies are not gonna work with this method so if you want to hire drivers you game will probably crash. To avoid it hire drivers before profiles modifications.
Useful links:
TS SE Tool https://github.com/LIPtoH/TS-SE-Tool/releases/tag/v0.3.11.0
Notepad++ https://notepad-plus-plus.org
Strings:
Roextended +Vanilla and all DLCs (99% opened, outdated in 1.56) shown on video: https://sharemods.com/3lmagkhl784x/roex99percent_trucksim.txt.html
Vanilla ETS2 1.56: https://sharemods.com/830si08evgbs/trucksim_full_sept25.zip.html (video guide: https://youtu.be/-Cc1cZvTh1Q)
Vanilla ATS 1.56: https://sharemods.com/wfmyi4i401dz/trucksim-100percent-sept25.zip.html (video guide: https://youtu.be/jRnq8-mvE1s)
Promods 2.74 (99.9%) https://sharemods.com/njxw5ia2bwqb/promods-trucksim.zip.html (video: https://youtu.be/sZzEPyASnAM?si=RUmCuI5c0vzeHn59)

How to Merge Map Progress in Profiles for ETS2 and ATS – Guide
In this guide I explain how to merge several profiles map discovery progress on example of merging vanilla 100% and Roextended 89% profiles on ETS2 1.53. You can try this scheme on 1.56 and in both ETS2 and ATS. Below you can find link to text version, tools and also ready strings used in this video (updated to 1.56).

Guide:
1. Reason
Merge discovered items in two profiles let you have updated visited roads in the end even if you exploring maps on different profiles. Also when the new version of the game is being released you can again discover as much as possible and then merge with your old combined profile.
2. Preparations and tools
Download and install software we plan to use – TS SE Tool, Notepad++, make sure that you have mods in mod folder if you plan to merge mod’s profile, make sure that Steam cloud disable for all profiles which will be changed, check config file if you can decrypt game files (g_save_format 2) and can use console (uset g_developer 1, uset g_console 1) and so on.
3. Backup
Backup all the profiles to the separate drive before doing any manipulations.
4. Profiles job
Enter to the profiles you wish to merge and save game to locate desired profiles by timestamp. You should carefully pick correct profiles. Decrypt profiles one by one and open game.sii in each mergeable profile and copy all discovered items to new text file (in this file we will merge them). We can merge 2 or more profiles but don’t forget that it should be from the same version of the game.
5. Merge (most important part)
When all discovered items strings pasted to the text file we have to change the order of numbers – the way as game read each string. Start from removing left part of the string (discovered_items []: ) with Notepad ++ command Find and Replace (Ctrl+C). On the Find what enter discovered_items \[\d+\]: and keep blank on Replace with (we have to remove them). Do not forget check Regular Expression in Search Mode. Replace all and you will get list of numbers. On this step you can also remove duplicates. Now we have to return discovered_items []: text with empty brackets. Alt+C and choose Text to insert and place there discovered_items []: and push ok. On the next step we have to add numbers to the brackets with correct order from 0. Select all in bracket spots (Choose first one and with Alt+Shift select last one) and again Alt+C and choose Number to insert – Initial should be 0, increased by 1, format decimal. Push ok and wait. If you have lot of string it can take a while. When all numbers added to brackets we can remove redundant spaces. Now we can copy strings and paste them to the target profile where will me merged result.
6. Results we get
We have to see discovered roads from 2 or more profiles we combined.
7. Back to play Load from profile where strings added and if you see desired result you can back to game but please bare in mind that recruitment agencies are not gonna work with this method so if you want to hire drivers you game will probably crash. To avoid it hire drivers before profiles modifications.
Useful links:
TS SE Tool https://github.com/LIPtoH/TS-SE-Tool/releases/tag/v0.3.11.0
Notepad++ https://notepad-plus-plus.org
Strings:
Roextended +Vanilla and all DLCs (99% opened, outdated in 1.56) shown on video: https://sharemods.com/3lmagkhl784x/roex99percent_trucksim.txt.html
Vanilla ETS2 1.56: https://sharemods.com/830si08evgbs/trucksim_full_sept25.zip.html (video guide: https://youtu.be/-Cc1cZvTh1Q)
Vanilla ATS 1.56: https://sharemods.com/wfmyi4i401dz/trucksim-100percent-sept25.zip.html (video guide: https://youtu.be/jRnq8-mvE1s)
Promods 2.74 (99.9%) https://sharemods.com/njxw5ia2bwqb/promods-trucksim.zip.html (video: https://youtu.be/sZzEPyASnAM?si=RUmCuI5c0vzeHn59)

How to Merge Map Progress in Profiles for ETS2 and ATS – 2025 Guide
In this short guide I will explain you how to merge several profiles map discovery progress on example of merging vanilla 100% and Roextended 89% profiles on ETS2 1.53. You can try this scheme on 1.55 and in both ETS2 and ATS. Below you can find link to text version, tools and also ready strings used in this video (updated to 1.55 for America).

Guide:
1. Reason
Merge discovered items in two profiles let you have updated visited roads in the end even if you exploring maps on different profiles. Also when the new version of the game is being released you can again discover as much as possible and then merge with your old combined profile.
2. Preparations and tools
Download and install software we plan to use – TS SE Tool, Notepad++, make sure that you have mods in mod folder if you plan to merge mod’s profile, make sure that Steam cloud disable for all profiles which will be changed, check config file if you can decrypt game files (g_save_format 2) and can use console (uset g_developer 1, uset g_console 1) and so on.
3. Backup
Backup all the profiles to the separate drive before doing any manipulations.
4. Profiles job
Enter to the profiles you wish to merge and save game to locate desired profiles by timestamp. You should carefully pick correct profiles. Decrypt profiles one by one and open game.sii in each mergeable profile and copy all discovered items to new text file (in this file we will merge them). We can merge 2 or more profiles but don’t forget that it should be from the same version of the game.
5. Merge (most important part)
When all discovered items strings pasted to the text file we have to change the order of numbers – the way as game read each string. Start from removing left part of the string (discovered_items []: ) with Notepad ++ command Find and Replace (Ctrl+C). On the Find what enter discovered_items \[\d+\]: and keep blank on Replace with (we have to remove them). Do not forget check Regular Expression in Search Mode. Replace all and you will get list of numbers. On this step you can also remove duplicates. Now we have to return discovered_items []: text with empty brackets. Alt+C and choose Text to insert and place there discovered_items []: and push ok. On the next step we have to add numbers to the brackets with correct order from 0. Select all in bracket spots (Choose first one and with Alt+Shift select last one) and again Alt+C and choose Number to insert – Initial should be 0, increased by 1, format decimal. Push ok and wait. If you have lot of string it can take a while. When all numbers added to brackets we can remove redundant spaces. Now we can copy strings and paste them to the target profile where will me merged result.
6. Results we get
We have to see discovered roads from 2 or more profiles we combined.
7. Back to play Load from profile where strings added and if you see desired result you can back to game but please bare in mind that recruitment agencies are not gonna work with this method so if you want to hire drivers you game will probably crash. To avoid it hire drivers before profiles modifications.
Useful links:
TS SE Tool https://github.com/LIPtoH/TS-SE-Tool/releases/tag/v0.3.11.0
Notepad++ https://notepad-plus-plus.org
Strings:
Roextended +Vanilla and all DLCs (99% opened) shown on video: https://sharemods.com/3lmagkhl784x/roex99percent_trucksim.txt.html
Vanilla ETS2 1.53: https://sharemods.com/le4g91swcadh/trucksim-ets2-full-save153.zip.html (video guide: https://youtu.be/H12qpCG_RIQ)
Vanilla ETS2 1.54 https://sharemods.com/sbr79ko0zc6h/ets154fullsave_trucksim.zip.html
Vanilla ATS 1.54: https://sharemods.com/2awrhvf2e9fl/trucksim-ats-100discovered-may25.zip.html
Vanilla ATS 1.55 (before Iowa DLC) https://sharemods.com/yd3fx9nrc3w8/trucksim100percent155.zip.html
Promods 2.74 (99.9%) https://sharemods.com/njxw5ia2bwqb/promods-trucksim.zip.html (video: https://youtu.be/sZzEPyASnAM?si=RUmCuI5c0vzeHn59)

How to Merge Map Progress in Profiles for ETS2 and ATS – 2025 Guide
In this short guide I will explain you how to merge several profiles map discovery progress on example of merging vanilla 100% and Roextended 89% profiles on ETS2 1.53. You can try this scheme on 1.54 and in both ETS2 and ATS. Below you can find link to text version, tools and also ready strings used in this video (updated to 1.54).

Guide:
1. Reason
Merge discovered items in two profiles let you have updated visited roads in the end even if you exploring maps on different profiles. Also when the new version of the game is being released you can again discover as much as possible and then merge with your old combined profile.
2. Preparations and tools
Download and install software we plan to use – TS SE Tool, Notepad++, make sure that you have mods in mod folder if you plan to merge mod’s profile, make sure that Steam cloud disable for all profiles which will be changed, check config file if you can decrypt game files (g_save_format 2) and can use console (uset g_developer 1, uset g_console 1) and so on.
3. Backup
Backup all the profiles to the separate drive before doing any manipulations.
4. Profiles job
Enter to the profiles you wish to merge and save game to locate desired profiles by timestamp. You should carefully pick correct profiles. Decrypt profiles one by one and open game.sii in each mergeable profile and copy all discovered items to new text file (in this file we will merge them). We can merge 2 or more profiles but don’t forget that it should be from the same version of the game.
5. Merge (most important part)
When all discovered items strings pasted to the text file we have to change the order of numbers – the way as game read each string. Start from removing left part of the string (discovered_items []: ) with Notepad ++ command Find and Replace (Ctrl+C). On the Find what enter discovered_items \[\d+\]: and keep blank on Replace with (we have to remove them). Do not forget check Regular Expression in Search Mode. Replace all and you will get list of numbers. On this step you can also remove duplicates. Now we have to return discovered_items []: text with empty brackets. Alt+C and choose Text to insert and place there discovered_items []: and push ok. On the next step we have to add numbers to the brackets with correct order from 0. Select all in bracket spots (Choose first one and with Alt+Shift select last one) and again Alt+C and choose Number to insert – Initial should be 0, increased by 1, format decimal. Push ok and wait. If you have lot of string it can take a while. When all numbers added to brackets we can remove redundant spaces. Now we can copy strings and paste them to the target profile where will me merged result.
6. Results we get
We have to see discovered roads from 2 or more profiles we combined.
7. Back to play Load from profile where strings added and if you see desired result you can back to game but please bare in mind that recruitment agencies are not gonna work with this method so if you want to hire drivers you game will probably crash. To avoid it hire drivers before profiles modifications.
Useful links:
TS SE Tool https://github.com/LIPtoH/TS-SE-Tool/releases/tag/v0.3.11.0
Notepad++ https://notepad-plus-plus.org
Strings:
Roextended +Vanilla and all DLCs (99% opened) shown on video: https://sharemods.com/3lmagkhl784x/roex99percent_trucksim.txt.html
Vanilla ETS2 1.53: https://sharemods.com/le4g91swcadh/trucksim-ets2-full-save153.zip.html (video guide: https://youtu.be/H12qpCG_RIQ)
Vanilla ETS2 1.54 https://sharemods.com/sbr79ko0zc6h/ets154fullsave_trucksim.zip.html
Vanilla ATS 1.54: https://sharemods.com/2awrhvf2e9fl/trucksim-ats-100discovered-may25.zip.html
Promods 2.73 (99.9%) https://sharemods.com/ehga2vqp6yxz/promods99percent_trucksim.zip.html (video: https://youtu.be/_X7mCaQFFcQ)

How to Merge 2+ Map Progress in Profiles for ETS2 and ATS
In this short guide I will explain you how to merge several profiles map discovery progress on example of merging vanilla 100% and Roextended 89% profiles on ETS2 1.53. You can try this scheme on 1.54 and in both ETS2 and ATS. Below you can find link to text version, tools and also ready strings used in this video (updated to 1.54).

Guide:
1. Reason
Merge discovered items in two profiles let you have updated visited roads in the end even if you exploring maps on different profiles. Also when the new version of the game is being released you can again discover as much as possible and then merge with your old combined profile.
2. Preparations and tools
Download and install software we plan to use – TS SE Tool, Notepad++, make sure that you have mods in mod folder if you plan to merge mod’s profile, make sure that Steam cloud disable for all profiles which will be changed, check config file if you can decrypt game files (g_save_format 2) and can use console (uset g_developer 1, uset g_console 1) and so on.
3. Backup
Backup all the profiles to the separate drive before doing any manipulations.
4. Profiles job
Enter to the profiles you wish to merge and save game to locate desired profiles by timestamp. You should carefully pick correct profiles. Decrypt profiles one by one and open game.sii in each mergeable profile and copy all discovered items to new text file (in this file we will merge them). We can merge 2 or more profiles but don’t forget that it should be from the same version of the game.
5. Merge (most important part)
When all discovered items strings pasted to the text file we have to change the order of numbers – the way as game read each string. Start from removing left part of the string (discovered_items []: ) with Notepad ++ command Find and Replace (Ctrl+C). On the Find what enter discovered_items \[\d+\]: and keep blank on Replace with (we have to remove them). Do not forget check Regular Expression in Search Mode. Replace all and you will get list of numbers. On this step you can also remove duplicates. Now we have to return discovered_items []: text with empty brackets. Alt+C and choose Text to insert and place there discovered_items []: and push ok. On the next step we have to add numbers to the brackets with correct order from 0. Select all in bracket spots (Choose first one and with Alt+Shift select last one) and again Alt+C and choose Number to insert – Initial should be 0, increased by 1, format decimal. Push ok and wait. If you have lot of string it can take a while. When all numbers added to brackets we can remove redundant spaces. Now we can copy strings and paste them to the target profile where will me merged result.
6. Results we get
We have to see discovered roads from 2 or more profiles we combined.
7. Back to play Load from profile where strings added and if you see desired result you can back to game but please bare in mind that recruitment agencies are not gonna work with this method so if you want to hire drivers you game will probably crash. To avoid it hire drivers before profiles modifications.
Useful links:
TS SE Tool https://github.com/LIPtoH/TS-SE-Tool/releases/tag/v0.3.11.0
Notepad++ https://notepad-plus-plus.org
Strings:
Roextended +Vanilla and all DLCs (99% opened) shown on video: https://sharemods.com/3lmagkhl784x/roex99percent_trucksim.txt.html
Vanilla ETS2 1.53: https://sharemods.com/le4g91swcadh/trucksim-ets2-full-save153.zip.html (video guide: https://youtu.be/H12qpCG_RIQ)
Vanilla ETS2 1.54 https://sharemods.com/sbr79ko0zc6h/ets154fullsave_trucksim.zip.html
Vanilla ATS 1.54: https://sharemods.com/2awrhvf2e9fl/trucksim-ats-100discovered-may25.zip.html
Promods 2.73 (99.9%) https://sharemods.com/ehga2vqp6yxz/promods99percent_trucksim.zip.html (video: https://youtu.be/_X7mCaQFFcQ)

How to Merge 2+ Map Progress in Profiles for ETS2 and ATS
In this short guide I will explain you how to merge several profiles map discovery progress on example of merging vanilla 100% and Roextended 89% profiles on ETS2 1.53. Below you can find link to text version, tools and also ready strings used in this video.

Guide:
1. Reason
Merge discovered items in two profiles let you have updated visited roads in the end even if you exploring maps on different profiles. Also when the new version of the game is being released you can again discover as much as possible and then merge with your old combined profile.
2. Preparations and tools
Download and install software we plan to use – TS SE Tool, Notepad++, make sure that you have mods in mod folder if you plan to merge mod’s profile, make sure that Steam cloud disable for all profiles which will be changed, check config file if you can decrypt game files (g_save_format 2) and can use console (uset g_developer 1, uset g_console 1) and so on.
3. Backup
Backup all the profiles to the separate drive before doing any manipulations.
4. Profiles job
Enter to the profiles you wish to merge and save game to locate desired profiles by timestamp. You should carefully pick correct profiles. Decrypt profiles one by one and open game.sii in each mergeable profile and copy all discovered items to new text file (in this file we will merge them). We can merge 2 or more profiles but don’t forget that it should be from the same version of the game.
5. Merge (most important part)
When all discovered items strings pasted to the text file we have to change the order of numbers – the way as game read each string. Start from removing left part of the string (discovered_items []: ) with Notepad ++ command Find and Replace (Ctrl+C). On the Find what enter discovered_items \[\d+\]: and keep blank on Replace with (we have to remove them). Do not forget check Regular Expression in Search Mode. Replace all and you will get list of numbers. On this step you can also remove duplicates. Now we have to return discovered_items []: text with empty brackets. Alt+C and choose Text to insert and place there discovered_items []: and push ok. On the next step we have to add numbers to the brackets with correct order from 0. Select all in bracket spots (Choose first one and with Alt+Shift select last one) and again Alt+C and choose Number to insert – Initial should be 0, increased by 1, format decimal. Push ok and wait. If you have lot of string it can take a while. When all numbers added to brackets we can remove redundant spaces. Now we can copy strings and paste them to the target profile where will me merged result.
6. Results we get
We have to see discovered roads from 2 or more profiles we combined.
7. Back to play Load from profile where strings added and if you see desired result you can back to game but please bare in mind that recruitment agencies are not gonna work with this method so if you want to hire drivers you game will probably crash. To avoid it hire drivers before profiles modifications.
Useful links:
TS SE Tool https://github.com/LIPtoH/TS-SE-Tool/releases/tag/v0.3.11.0
Notepad++ https://notepad-plus-plus.org
Strings:
Roextended +Vanilla and all DLCs (99% opened) shown on video: https://sharemods.com/3lmagkhl784x/roex99percent_trucksim.txt.html
Vanilla ETS2 1.53: https://sharemods.com/le4g91swcadh/trucksim-ets2-full-save153.zip.html (video guide: https://youtu.be/H12qpCG_RIQ)
Vanilla ETS2 1.54 https://sharemods.com/sbr79ko0zc6h/ets154fullsave_trucksim.zip.html
Vanilla ATS 1.53: https://sharemods.com/unarwal5qt4z/trucksim-ats-153-full.txt.html
Promods 2.73 (97%) https://sharemods.com/147xdgiqg3l0/trucksim_promods153.zip.html (video: https://youtu.be/cpEnuyqvvMw)
How to Merge 2+ Map Progress in Profiles for ETS2 and ATS
In this short guide I will explain you how to merge several profiles map discovery progress on example of merging vanilla 100% and Roextended 89% profiles. Below you can find link to text version, tools and also ready strings used in this video.

Guide:
1. Reason
Merge discovered items in two profiles let you have updated visited roads in the end even if you exploring maps on different profiles. Also when the new version of the game is being released you can again discover as much as possible and then merge with your old combined profile.
2. Preparations and tools
Download and install software we plan to use – TS SE Tool, Notepad++, make sure that you have mods in mod folder if you plan to merge mod’s profile, make sure that Steam cloud disable for all profiles which will be changed, check config file if you can decrypt game files (g_save_format 2) and can use console (uset g_developer 1, uset g_console 1) and so on.
3. Backup
Backup all the profiles to the separate drive before doing any manipulations.
4. Profiles job
Enter to the profiles you wish to merge and save game to locate desired profiles by timestamp. You should carefully pick correct profiles. Decrypt profiles one by one and open game.sii in each mergeable profile and copy all discovered items to new text file (in this file we will merge them). We can merge 2 or more profiles but don’t forget that it should be from the same version of the game.
5. Merge (most important part)
When all discovered items strings pasted to the text file we have to change the order of numbers – the way as game read each string. Start from removing left part of the string (discovered_items []: ) with Notepad ++ command Find and Replace (Ctrl+C). On the Find what enter discovered_items \[\d+\]: and keep blank on Replace with (we have to remove them). Do not forget check Regular Expression in Search Mode. Replace all and you will get list of numbers. On this step you can also remove duplicates. Now we have to return discovered_items []: text with empty brackets. Alt+C and choose Text to insert and place there discovered_items []: and push ok. On the next step we have to add numbers to the brackets with correct order from 0. Select all in bracket spots (Choose first one and with Alt+Shift select last one) and again Alt+C and choose Number to insert – Initial should be 0, increased by 1, format decimal. Push ok and wait. If you have lot of string it can take a while. When all numbers added to brackets we can remove redundant spaces. Now we can copy strings and paste them to the target profile where will me merged result.
6. Results we get
We have to see discovered roads from 2 or more profiles we combined.
7. Back to play Load from profile where strings added and if you see desired result you can back to game but please bare in mind that recruitment agencies are not gonna work with this method so if you want to hire drivers you game will probably crash. To avoid it hire drivers before profiles modifications.
Useful links:
TS SE Tool https://github.com/LIPtoH/TS-SE-Tool/releases/tag/v0.3.11.0
Notepad++ https://notepad-plus-plus.org
Strings:
Roextended +Vanilla and all DLCs (99% opened) shown on video: https://sharemods.com/3lmagkhl784x/roex99percent_trucksim.txt.html
Vanilla ETS2 1.53: https://sharemods.com/le4g91swcadh/trucksim-ets2-full-save153.zip.html (video guide: https://youtu.be/H12qpCG_RIQ)
Vanilla ATS 1.53: https://sharemods.com/unarwal5qt4z/trucksim-ats-153-full.txt.html
Promods 2.73 (97%) https://sharemods.com/147xdgiqg3l0/trucksim_promods153.zip.html (video: https://youtu.be/cpEnuyqvvMw)