mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
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:
parent
fc281889c6
commit
d972378f0e
3 changed files with 106 additions and 5 deletions
|
|
@ -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 != "")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue