如何在 Creeper world 3 AE 上的 PC 之間同步我的存檔
我在筆記型電腦和台式機上玩 Creeper World 3,一個在 ubuntu 上,另一個在 windows 10 上。據我所知,CW3 似乎不使用蒸汽雲來保存保存文件。
如何在我的機器之間保持相同的保存?
Dropbox 方式
由於 CW3 使存檔交叉兼容 windows / ubuntu 和 mac,您可以共享同一個存檔文件。
如何 :
首先,您需要一個雲帳戶,我選擇 Dropbox,但它可能適用於其他所有人。
小心,這只是共享同一個存檔,而不是將兩個存檔合二為一:您必須選擇要保留並同步的存檔
在進行任何更改之前關閉遊戲
共享文件夾
在您的雲本地文件夾中,創建並找到一個遊戲保存文件夾(對我來說,它將是
/home/_USER_/Dropbox/game_save/
andc:\Users\_USER_\Dropbox\game_save
)遊戲設定
查找**
GameSettings.xml
**文件(在首次啟動 CW3 後創建)
- 在 Linux 上
~/.config/creeperworld3/GameSettings.xml
- 視窗
c:\Users\_USER_\AppData\Roaming\CreeperWorld3\GameSettings.xml
- osx
~/.config/CreeperWorld3/GameSettings.xml
使用文本編輯器(sublimetext / notepad++ / gedit)打開它,找到以下行:
<UseCustomDataPath>False</UseCustomDataPath> <CustomDataPath> </CustomDataPath>
將第一個設置為
True
並將您之前創建的同步保存文件夾的路徑放在第 2 行和第 3 行之間。對於我的 Ubuntu,我將擁有:
<UseCustomDataPath>True</UseCustomDataPath> <CustomDataPath>/home/_USER_/Dropbox/game_save/</CustomDataPath>
對於 W10:
<UseCustomDataPath>True</UseCustomDataPath> <CustomDataPath>c:\Users\_USER_\Dropbox\game_save\</CustomDataPath>
遊戲存檔
現在,我們需要取回我們的存檔,去找
creeperworld3
文件夾:
- ubuntu
~/Documents/creeperworld3/
- 視窗
c:\Users\_USER_\Documents\creeperworld3\
- osx
~/Documents/CreeperWorld3
在 ubuntu 上複製並粘貼同步遊戲文件夾中的完整文件夾
creeperworld3
(不僅是內容)~/Dropbox/game_save/
。您現在應該能夠在啟動遊戲時看到您的同步保存。
麻煩
如果沒有,您可能選擇
creeperworld3
了保存文件夾,並最終得到
~/Dropbox/game_save/creeperworld3/creeperworld3/data/
代替
~/Dropbox/game_save/creeperworld3/data/
只需
/creeperwold3
從您CustomDataPath
的GameSettings.xml