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









This will automatically enter the BIOS after booting the PC.
For the Startup too Many achievement you can add following line between the timeouts for a running count of your startups:
type "C:\Users\%USERNAME%\Documents\Universe Sandbox\Logs\Sandbox Log.txt" | findstr "RunCount"[i/]
Disgusting...
Place inside the game folder before executing.
Change var 'numstartups' for the Achievement.
It will output the number of startups, so you can keep track.
Save as a .bat file, like mentioned by OP.
@echo off
set numstartups=100
set countstartups=0
:loop
start "" "Universe Sandbox.exe"
set /a numstartups -= 1
timeout /t 4 /nobreak
taskkill /F /IM "Universe Sandbox.exe" /T
timeout /t 2 /nobreak
set /a countstartups += 1
echo Started %countstartups% times
if %numstartups% GTR 0 goto loop
pause
So that is a way of getting this achievement the legit way if you care about that (as in circumventing the issue that Tim.Doherty came with about achievement tracking sites)