Ejemplo n.º 1
0
        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();
        }
Ejemplo n.º 2
0
        // 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();
        }
Ejemplo n.º 3
0
        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();
        }
Ejemplo n.º 4
0
 // 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();
 }