Re-added WebSocketChat bot and improved it, no longer using WebsocketSharp library

This commit is contained in:
Anon 2023-05-27 19:46:28 +02:00
parent 9855e2e0f1
commit 1efa55206f
9 changed files with 1642 additions and 25 deletions

View file

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