Update bot making documentation in ChatBot.cs

+ Add GetVarAsDouble in Script API (See #200)
This commit is contained in:
ORelio 2016-09-11 20:11:01 +02:00
parent 2a07fbbae6
commit f5575d7f8b
3 changed files with 24 additions and 11 deletions

View file

@ -116,6 +116,8 @@ namespace MinecraftClient
if (Settings.ScriptScheduler_Enabled) { BotLoad(new ChatBots.ScriptScheduler(Settings.ExpandVars(Settings.ScriptScheduler_TasksFile))); }
if (Settings.RemoteCtrl_Enabled) { BotLoad(new ChatBots.RemoteControl()); }
if (Settings.AutoRespond_Enabled) { BotLoad(new ChatBots.AutoRespond(Settings.AutoRespond_Matches)); }
//Add your ChatBot here by uncommenting and adapting
//BotLoad(new ChatBots.YourBot());
}
try