- 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
12 lines
261 B
Batchfile
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
|
|
)
|