feat: complete DirtyLeague autonomous FSM bot with fast derank and chest handling
This commit is contained in:
20
start_bot.bat
Normal file
20
start_bot.bat
Normal 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
|
||||
)
|
||||
Reference in New Issue
Block a user