Add cache remover from mcp

This commit is contained in:
Isaac Shoebottom 2024-07-31 12:14:27 -03:00
parent 5ea9fddc45
commit 62e81da516

29
_Cache Remover.bat Normal file
View File

@ -0,0 +1,29 @@
@echo off
cls
IF NOT EXIST "..\..\tf_win64.exe" (goto :WAIT)
goto :DOIT
:WAIT
color c
echo Error Code : E01 (not in custom folder)
goto :ASK
:ASK
set /P c=This program might not be in the CUSTOM folder, continue? [continue or cancel]
if /I %c% EQU continue goto :DOIT
if /I %c% EQU cancel goto :EXIT2
:DOIT
echo Removing cache files.
del /F /S *.cache
goto EXIT
:EXIT2
exit
:EXIT
color a
echo done!
echo cache remover by Panic Civilian
pause
exit