Add a proof of concept working demo

This commit is contained in:
ReinforceZwei 2020-07-07 11:38:15 +08:00 committed by ORelio
parent f8111d6b3b
commit a51368a859
3 changed files with 84 additions and 0 deletions

View file

@ -176,6 +176,8 @@ namespace MinecraftClient
if (Settings.AutoFishing_Enabled) { BotLoad(new ChatBots.AutoFishing()); }
if (Settings.AutoEat_Enabled) { BotLoad(new ChatBots.AutoEat(Settings.AutoEat_hungerThreshold)); }
BotLoad(new AutoCarft());
//Add your ChatBot here by uncommenting and adapting
//BotLoad(new ChatBots.YourBot());
}