Turing Complete

Turing Complete

View Stats:
有没有办法修改游戏存档路径 Is there a way to modify the game save file path?
在游戏设置里面游戏存档好像是没办法修改的(输入其他路径以后没办法保存),之前有大佬告诉我可以在电脑文件里面搞一些插件啥的进行转移,但是由于本人对计算机的认知和操作能力有限,实在是没办法做到(英文为机翻)

It seems that the game save file path cannot be modified in the game settings (it can't be saved after entering another path). Before, some expert told me that I could transfer it by installing some plugins in the computer files. However, due to my limited knowledge and operation ability of computers, I really can't do it. (The English version is machine - translated)
< >
Showing 1-1 of 1 comments
Are you on Windows or on Linux?


Option 1 on Windows
You can go to the properties of the game (right click it) and enter the following in the Launch Options field:

cmd /c "set XDG_DATA_HOME=C:\your\path&& %command%"

Replace C:\your\path with the path you want. Aside from that make sure to enter it exactly as given, with the double quotes before set and at the end, XDG_DATA_HOME in all caps and NO blank space between your path and the && (otherwise it will append a space to the folder name).

You will then find the save data under C:\your\path\Godot\app_userdata\Turing Complete

Here is an example screenshot of what I mean: https://imgur.com/a/TCGbl6v


Option 2 on Windows
If you want to start the game outside of Steam instead, you can make a batch file. For example call it Turing_Complete.bat and then put this inside:

set XDG_DATA_HOME=C:\your\path cd /D "C:\Program Files (x86)\Steam\steamapps\common\Turing Complete" "Turing Complete.exe"

Again replace C:\your\path with the save data path you want and additionally replace C:\Program Files (x86)\Steam\steamapps\common\Turing Complete with the path to the game if it isn't the default.

You can then double click this Batch file to start the game with the changed save path.


Option 1 on Linux
On Linux it works similarly, but it's easier. If you want to change the Steam Launch Options for the game, it'll be this:

XDG_DATA_HOME=/home/youruser/path %command%

Again, replace /home/youruser/path with the save data path you want.


Option 2 on Linux
If you want to start it outside of Steam, you can simply do it like this, either in a script or directly entering it on the command line:

cd "/home/youruser/.local/share/Steam/steamapps/common/Turing Complete" XDG_DATA_HOME=/home/youruser/path "Turing Complete.x86_64"

Again, replace /home/youruser/.local/share/Steam/steamapps/common/Turing Complete with the install location of the game and /home/youruser/path with your desired save data location.
Last edited by uNiels 💗; Jan 10 @ 4:13am
< >
Showing 1-1 of 1 comments
Per page: 1530 50