finished up grid detection.

This commit is contained in:
Boki 2026-02-10 17:29:37 -05:00
parent 41d174195e
commit 1246884be9
11 changed files with 1037 additions and 19 deletions

View file

@ -63,6 +63,14 @@ program
const gameController = new GameController(config);
dashboard.setDebugDeps({ screenReader, gameController });
// Go to hideout on startup
dashboard.broadcastLog('info', 'Sending /hideout command...');
await gameController.focusGame();
await gameController.goToHideout();
bot.state = 'IN_HIDEOUT';
dashboard.broadcastStatus();
dashboard.broadcastLog('info', 'In hideout, ready to trade');
const logWatcher = new ClientLogWatcher(config.poe2LogPath);
await logWatcher.start();
dashboard.broadcastLog('info', 'Watching Client.txt for game events');