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
rightclick green hell and disable remote saves for just this start.
That will remove everything.
Launch game and start a new game. Select you game level>survival or Story etc use the additional mode to customize your game. Once you have built a roof save at teh roof then exit game renable remote saves.
Personally I have always disablled it as cloud can corrput our saves. Backup saves is easier more reliable.
@echo off
setlocal
REM Get date time in format YYYY-MMM-DD-HH:MM:SS
for /f %%I in ('wmic os get localdatetime /format:list ^| find "="') do set "%%I"
set "YYYY=%localdatetime:~0,4%"
set /a "MMM=1%localdatetime:~4,2% - 100"
REM need to -100 because 01 (Jan) 1 digit and 12(Dec) 2 digit.
set "DD=%localdatetime:~6,2%"
for /f "tokens=%MMM%" %%I in ("JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC") do set "MMM=%%I"
set /a "HH=1%localdatetime:~8,2% -100"
set /a "MM=1%localdatetime:~10,2% -100"
set /a "SS=1%localdatetime:~10,2% -100"
echo %DD%-%MMM%-%YYYY%(%HH%:%MM%:%SS%)
endlocal
pause