コード例 #1
0
ファイル: PuntPlugin.cs プロジェクト: detmach/SharpIrcBot
        public PuntPlugin(IConnectionManager connMgr, JObject config)
        {
            ConnectionManager = connMgr;
            Config            = new PuntConfig(config);
            Randomizer        = new Random();
            RegexCache        = new RegexCache();

            ConnectionManager.ChannelAction  += HandleAnyChannelMessage;
            ConnectionManager.ChannelMessage += HandleAnyChannelMessage;
            ConnectionManager.ChannelNotice  += HandleAnyChannelMessage;

            RebuildRegexCache();
        }
コード例 #2
0
ファイル: PuntPlugin.cs プロジェクト: detmach/SharpIrcBot
 public virtual void ReloadConfiguration(JObject newConfig)
 {
     Config = new PuntConfig(newConfig);
     PostConfigReload();
 }