Files
my-botty/start_bot_detached.bat
alex 06c73e7cbf fix: fuzzy char-name OCR match; single-instance guard in detached launcher
- OCR reads FISTMAN as "fabiman" — SequenceMatcher >= 0.6 on the first
  word of the row handles the mangling
- start_bot_detached.bat kills existing main.py instances first: F11/F12
  are global hotkeys, so duplicate bots receive every press and fight
  each other (one starts while the other pauses/exits)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-06-10 18:28:12 +02:00

10 lines
702 B
Batchfile

@echo off
:: Launch botty detached with console output captured to log\console_<rand>.log
:: (used for unattended/remote starts where no interactive console exists)
cd /d "C:\Users\alex\Downloads\my-botty"
:: Single-instance guard: F11/F12 are GLOBAL hotkeys, so two bot instances
:: receive every press and fight each other (one starts, the other pauses).
powershell -NoProfile -Command "Get-CimInstance Win32_Process -Filter \"Name='python.exe'\" | Where-Object {$_.CommandLine -like '*my-botty*main.py*'} | ForEach-Object { Stop-Process -Id $_.ProcessId -Force }"
set "TS=%RANDOM%"
call "C:\Users\alex\Downloads\my-botty\run_botty.bat" > "C:\Users\alex\Downloads\my-botty\log\console_%TS%.log" 2>&1