Added remote control bot

A bot that can perform operations using /tell commands!
Available commands: exit, reco, script, send.
Closes #7 :)
This commit is contained in:
ORelio 2014-04-03 00:17:47 +02:00
parent fc281889c6
commit d972378f0e
3 changed files with 106 additions and 5 deletions

View file

@ -163,6 +163,7 @@ namespace MinecraftClient
if (Settings.PlayerLog_Enabled) { handler.BotLoad(new Bots.PlayerListLogger(Settings.PlayerLog_Delay, Settings.PlayerLog_File)); }
if (Settings.AutoRelog_Enabled) { handler.BotLoad(new Bots.AutoRelog(Settings.AutoRelog_Delay, Settings.AutoRelog_Retries)); }
if (Settings.Scripting_Enabled) { handler.BotLoad(new Bots.Scripting(Settings.Scripting_ScriptFile)); }
if (Settings.RemoteCtrl_Enabled){ handler.BotLoad(new Bots.RemoteControl()); }
//Start the main TCP client
if (Settings.SingleCommand != "")