From 62e81da5167a5b199fe93faa59265b26bc7e0ea7 Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Wed, 31 Jul 2024 12:14:27 -0300 Subject: [PATCH] Add cache remover from mcp --- _Cache Remover.bat | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 _Cache Remover.bat diff --git a/_Cache Remover.bat b/_Cache Remover.bat new file mode 100644 index 0000000..d3ee3e1 --- /dev/null +++ b/_Cache Remover.bat @@ -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 \ No newline at end of file