Desert-Golfing

如何重置我在沙漠高爾夫中的進度?

  • September 20, 2018

我想在我的 iPhone 上重置我的沙漠高爾夫保存數據並從第 1 級重新開始。

是否可以重置沙漠高爾夫的進度?

該執行緒中所述,可以通過刪除並重新安裝應用程序來重置您的進度。

可以通過刪除應用程序來重置遊戲嗎?

是的,應該是——我以前做過,雖然那是很久以前的事了,所以不知道更新是否改變了任何東西。

我自己做了這個,可以驗證。

PC 版現已登陸 Steam。

要重置您的進度,請找到安裝文件夾並簡單地刪除該save目錄:

%STEAM_DIR%\SteamApps\common\Desert Golfing\save

(該目錄將在遊戲重新啟動後重新創建)


而且,如果你在一個瘋狂的一桿進洞中並且不想在一個艱難的洞之後失去所有的進步,這裡有一個很好的批處理文件,它將在save每次開始遊戲之前備份目錄:

@echo off

REM -- Directory location of this file
set THIS_DIR=%~dp0
REM -- Remove ending slash, if there is one
REM -- Great example from Strawberry Perl's portable shell launcher:
if not "" == "%THIS_DIR%" if #%THIS_DIR:~-1%# == #\# set THIS_DIR=%THIS_DIR:~0,-1%

REM -- Get the current date/time stamp
for /f "tokens=2 delims==." %%I in ('%SystemRoot%\System32\wbem\wmic.exe OS GET LocalDateTime /VALUE') do @set "DT_STAMP=%%I" & call set "DT_STAMP=%%DT_STAMP:~0,4%%-%%DT_STAMP:~4,2%%-%%DT_STAMP:~6,2%%_%%DT_STAMP:~8,2%%.%%DT_STAMP:~10,2%%.%%DT_STAMP:~12,2%%"

REM -- Directory locations
set DIR_SAVE=%THIS_DIR%\save
set DIR_BACKUP=%THIS_DIR%\save-%DT_STAMP%

REM -- Backup the save directory
if exist "%DIR_SAVE%" xcopy /Y "%DIR_SAVE%" "%DIR_BACKUP%" /E /C /I /Q /H /R >nul

REM -- Start the game!
start "" /D"%THIS_DIR%" "Golf.exe"

極簡主義,適合編劇:

@echo off
for /f "tokens=2 delims==." %%I in ('%SystemRoot%\System32\wbem\wmic.exe OS GET LocalDateTime /VALUE') do @set "DT_STAMP=%%I" & call set "DT_STAMP=%%DT_STAMP:~0,4%%-%%DT_STAMP:~4,2%%-%%DT_STAMP:~6,2%%_%%DT_STAMP:~8,2%%.%%DT_STAMP:~10,2%%.%%DT_STAMP:~12,2%%"
if exist "%~dp0save" xcopy /Y "%~dp0save" "%~dp0save-%DT_STAMP%" /E /C /I /Q /H /R >nul & start "" /D"%~dp0" "Golf.exe"

引用自:https://gaming.stackexchange.com/questions/322936