Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
That said, the solution people are giving for OneDrive would work regardless of where your Documents folder is located. You just need to move the contents of the save location the game is creating to where ever you Documents folder is, then create a symbolic link from your Documents folder to the default location where the game is writing to.
That is absolutely not what it is supposed to be doing because no other game I own does that. Even old Oblivion syncs correctly. Everything goes into the Documents folder on D that I've configured, except this game.
EDIT: well, it's "supposed" to be doing that in the sense that it's doing what it's been hard-coded to do. It's just confusing and unlike any other game that I've played on Steam (that supports Steam cloud - I'm looking at you DS3)
Oh I see, that makes sense.
What's your setup on your PC? Do you have your documents folder on C drive or somewhere else on your desktop? I assume your Asus device has it on C?
Problem I had was my documents was saved to go to one drive so I uninstalled one drive and it was still there what I ended up needing to do was open CMD > Powershell and redirected my document to be local only I asked ChatGPT the commands and it gave me the following;
# Define correct local Documents path
$localPath = "$env:USERPROFILE\Documents"
# Registry paths for known folders
$regPathUserShell = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders"
$regPathShell = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders"
# Fix the 'Documents' folder in both registry keys
Set-ItemProperty -Path $regPathUserShell -Name "Personal" -Value $localPath
Set-ItemProperty -Path $regPathShell -Name "Personal" -Value $localPath
# Restart Explorer to apply the change
Stop-Process -Name explorer -Force
After the restart of file explorer my documents was corrected and the save file in steam directory went from a .vdf to .sav I then went and got Python installed and ran XGP Save Extractor to convert my gamepass saves into .sav and just slapped them into the save location on steam.
Unsure if this will help people because everyones system is different the errors are different for other people but if someone is having the same issue I had this was the easiest way to convert saves.
Just a warning that whatever is saved on onedrive and NOT your documents when you change the pathing everything that is not saved locally in your documents will be deleted until you resync Onedrive.
♥♥♥♥ Microsoft & ♥♥♥♥ Onedrive
Registry editing is a bit overkill compared to symlinking, but I'm glad that you found a solution and I respect the choice of wanting to obliterate OneDrive's existence