Пример #1
0
        /// <summary>
        /// Initiates and loads the chat settings
        /// </summary>
        public void LoadSettings()
        {
            //Creates the container
            _settings = new Settings();

            _settings.LoadSettings(_bot);

            //Load the chat bot
            _bot = new ChatBot.ChatBot(_settings.Channel);
            _bot.SetBotAccountInfo(_settings.BotUsername, _settings.PlaintextPassword);
            _bot.PermaModerators = _settings.PermaMods;
        }
Пример #2
0
        /// <summary>
        /// Initiates and loads the chat settings
        /// </summary>
        public void LoadSettings()
        {
            //Creates the container
            _settings = new Settings();

            _settings.LoadSettings(_bot);

            //Load the chat bot
            _bot = new ChatBot.ChatBot(_settings.Channel);
            _bot.SetBotAccountInfo(_settings.BotUsername, _settings.PlaintextPassword);
            _bot.PermaModerators = _settings.PermaMods;
        }