diff --git a/run.bat b/run.bat new file mode 100644 index 0000000000..047c8f6fd4 --- /dev/null +++ b/run.bat @@ -0,0 +1,10 @@ +@echo off +set /a x=0 +:LOOP +echo Running pokecli.py for count: %x% +REM Change the path for python.exe if it's different for you +C:\Python27\python.exe pokecli.py +REM Waits for 60 seconds +ping 127.0.0.1 -n 60 > nul +set /a x+=1 +goto :LOOP