@echo off && title Koalageddon Toggler || 2/21/2024 || 11:20 AM setlocal enableextensions enabledelayedexpansion if "%*" equ "1" set aftertoggle=1 if "%*" equ "disable" set disable=1 if "%*" equ "enable" set enable=1 if "%*" equ "check" set check=1 :start call utils.bat "steampath" call utils.bat "elevate" call :check if not exist "%STEAM%\version.dll" if "%aftertoggle%" neq "" call :check exit :check if "%enable%" equ "1" ( ren "%STEAM%\disabled_version.dll" "version.dll" exit ) if "%disable%" equ "1" ( ren "%STEAM%\version.dll" "disabled_version.dll" exit ) if exist "%STEAM%\version.dll" ( call utils.bat "stylecho" "Koalageddon is" "f0" call utils.bat "stylecho" "ENABLED" "a0" echo. call utils.bat "stylecho" "Press" "f0" call utils.bat "stylecho" "T" "40" call utils.bat "stylecho" "to DISABLE" "c0" echo. call utils.bat "stylecho" "Press" "f0" call utils.bat "stylecho" "E" "60" call utils.bat "stylecho" "to Exit" "e0" choice /n /c te if errorlevel 2 ( exit ) else ( call :disable ) ) else ( call utils.bat "stylecho" "Koalageddon is" "f0" call utils.bat "stylecho" "DISABLED" "c0" echo. call utils.bat "stylecho" "Press" "f0" call utils.bat "stylecho" "T" "20" call utils.bat "stylecho" "to ENABLE" "a0" echo. call utils.bat "stylecho" "Press" "f0" call utils.bat "stylecho" "E" "60" call utils.bat "stylecho" "to Exit" "e0" choice /n /c te if errorlevel 2 ( exit ) else ( call :enable ) ) exit /b :enable cls tasklist /fi "imagename eq Steam.exe" | findstr /i Steam.exe >nul && taskkill /f /im Steam.exe /t >nul ren "%STEAM%\disabled_version.dll" "version.dll" %<%:f0 " Koalageddon "%>>% && %<%:2f " ENABLED "%>>% && %<%:f0 " - Run again to disable "%>% call utils.bat "countdown" "Automatically exiting in" "5" exit /b :disable cls tasklist /fi "imagename eq Steam.exe" | findstr /i Steam.exe >nul && taskkill /f /im Steam.exe /t >nul ren "%STEAM%\version.dll" "disabled_version.dll" %<%:f0 " Koalageddon "%>>% && %<%:df " DISABLED "%>>% && %<%:f0 " - Run again to enable "%>% %<%:f0 " Console paused, to remind you to enable it later. (Press any key thrice to exit)"%>% pause>nul pause>nul pause>nul exit /b