Added a Telegram Bridge chat bot.

This commit is contained in:
Milutinke 2022-10-24 15:35:24 +02:00
parent 1a739eeab5
commit 1272ffda0b
6 changed files with 351 additions and 29 deletions

View file

@ -274,6 +274,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.TelegramBridge.Enabled) { BotLoad(new TelegramBridge()); }
//Add your ChatBot here by uncommenting and adapting
//BotLoad(new ChatBots.YourBot());
}