public override void OnStart() { Log.Write("Hunter Master Version: " + Ver + " Loaded"); var ruleUpdate = new LbRuleUpdater("MasterHunter", true); ruleUpdate.Run(); _lethalManager = new LethalHandler(); _playHandler = new PlayHandler(); }
// OnStart is called once when the class is initiated public override void OnStart() { // Writes to the application log that the bot was loaded API.Log.Write("Basic Bot Loaded!"); // Auto Updater for customrules from our server var ruleUpdater = new LbRuleUpdater("BasicBot", true); // Runs the auto updater ruleUpdater.Run(); }