Files
my-botty/run_quest_debug.bat
alex f6e700c921 feat: auto-detect D2R key bindings from .key/.keyo file
- Read character .key file from Saved Games / D2R install dir / APPDATA
- Auto-fill empty hotkeys in [char] section (inventory, belt, potions, etc.)
- Match skill slots to configured skills for validation
- Normalize key variants (left alt ~ alt, left shift ~ shift)
- params.ini values always take priority over detected bindings
- Warn on genuine mismatches between config and .key file
2026-05-19 16:46:24 +02:00

12 lines
261 B
Batchfile

@echo off
setlocal
set "PYTHON=C:\Users\%USERNAME%\miniforge3\envs\botty\python.exe"
if exist "%PYTHON%" (
cd /d "%~dp0"
%PYTHON% quest_debug.py
) else (
echo ERROR: Could not find botty Python.
echo Run: conda activate botty first.
pause
)