Implemented Map Chat bot which can render maps into images. Useful for solving captchas.

This commit is contained in:
Milutinke 2022-09-28 00:14:43 +02:00
parent 656aed4705
commit f7263873db
5 changed files with 372 additions and 20 deletions

View file

@ -288,6 +288,7 @@ namespace MinecraftClient
if (Settings.AutoDrop_Enabled) { BotLoad(new AutoDrop(Settings.AutoDrop_Mode, Settings.AutoDrop_items)); }
if (Settings.ReplayMod_Enabled && reload) { BotLoad(new ReplayCapture(Settings.ReplayMod_BackupInterval)); }
if (Settings.FollowPlayer_Enabled) { BotLoad(new FollowPlayer(Settings.FollowPlayer_UpdateLimit, Settings.FollowPlayer_UpdateLimit)); }
if (Settings.Map_Enabled) { BotLoad(new Map()); }
//Add your ChatBot here by uncommenting and adapting
//BotLoad(new ChatBots.YourBot());