Added the Web Socket Chat Bot.

This commit is contained in:
Milutinke 2022-10-20 19:29:35 +02:00
parent 0e7423d1d9
commit ed910aa9c7
9 changed files with 1272 additions and 3 deletions

View file

@ -273,6 +273,7 @@ namespace MinecraftClient
if (Config.ChatBot.RemoteControl.Enabled) { BotLoad(new RemoteControl()); }
if (Config.ChatBot.ReplayCapture.Enabled && reload) { BotLoad(new ReplayCapture()); }
if (Config.ChatBot.ScriptScheduler.Enabled) { BotLoad(new ScriptScheduler()); }
if (Config.ChatBot.WebSocketBot.Enabled) { BotLoad(new WebSocketBot()); }
//Add your ChatBot here by uncommenting and adapting
//BotLoad(new ChatBots.YourBot());
}