feat: complete DirtyLeague autonomous FSM bot with fast derank and chest handling

This commit is contained in:
VolandSZ
2026-09-08 13:38:42 +03:00
parent d9953407e0
commit 5777748abe
103 changed files with 1618 additions and 0 deletions

20
start_bot.bat Normal file
View File

@ -0,0 +1,20 @@
@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
)