diff --git a/ResetTotals.bat b/ResetTotals.bat new file mode 100644 index 000000000..d447cecb3 --- /dev/null +++ b/ResetTotals.bat @@ -0,0 +1,8 @@ +@echo off +cd /d %~dp0 +set /p statreset= This process will remove all accumulated pool totals. Are you sure you want to continue? [Y/N] +IF /I "%statreset%"=="Y" ( + if exist "Stats\Totals\*Total.txt" del "Stats\Totals\*Total.txt" + ECHO Your totals have been successfully reset. + PAUSE +)