21 lines
479 B
Batchfile
21 lines
479 B
Batchfile
@echo off
|
|
chcp 65001 > nul
|
|
echo ========================================================
|
|
echo DirtyLeague Autonomous Bot
|
|
echo ========================================================
|
|
echo.
|
|
echo Press 'Q' at ANY time for Emergency Stop (Kill Switch).
|
|
echo.
|
|
|
|
if exist ".venv\Scripts\python.exe" (
|
|
".venv\Scripts\python.exe" run.py %*
|
|
) else (
|
|
python run.py %*
|
|
)
|
|
|
|
if %ERRORLEVEL% neq 0 (
|
|
echo.
|
|
echo Bot stopped with exit code %ERRORLEVEL%.
|
|
pause
|
|
)
|