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
I've made a couple slight improvements to the batch script:
1) Will only launch a set number of times (change value of launchesRemaining)
2) Reports the number of launches remaining
3) Calls you a nerd
---
@echo off
set/A launchesRemaining = 393
:repeat
cls
echo Welcome to the Unofficial AmpuTea ReLauncher
echo Launches Remaining: %launchesRemaining%
start "" "F:\Games\STEAM\steamapps\common\Ampu-Tea\AmpuTea.exe"
timeout /t 1 >nul 2>&1
wscript "%CD%\littlehelper.vbs"
timeout /t 1 >nul 2>&1
taskkill /f /t /im "AmpuTea.exe" >nul 2>&1
set/A launchesRemaining = %launchesRemaining% - 1
if %launchesRemaining% GTR 0 goto repeat
echo Congratulations for being a nerd!
pause
You can also try with:
timeout /t 3
timeout /t 1
timeout /t 1
It's faster.
start "" "steam://rungameid/289090"
timeout /t 3
wscript %CSIDL_DEFAULT_DESKTOP%"amputea.vbs"
timeout /t 2
taskkill /f /t /im "AmpuTea.exe"
timeout /t 1
goto :repeat