コード例 #1
0
 public ChanServ(IrcBot Bot)
 {
     this.Bot           = Bot;
     this.EnableOpCache = true;
     this.DeopTimer     = new Timer(DeopTimerFire, null, Timeout.Infinite, Timeout.Infinite);
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: t0phux/JeBot
 public void RegisterManagerCommand(string Command, IrcBot.CommandHandler CommandHandler)
 {
     ManagerCommands.Add(Command, CommandHandler);
     RegisterCommand(Command, HandleManagerCommand);
 }
コード例 #3
0
ファイル: ChanServ.cs プロジェクト: Bananamilkshake/lebot
 public ChanServ(IrcBot Bot)
 {
     this.Bot = Bot;
     this.EnableOpCache = true;
     this.DeopTimer = new Timer(DeopTimerFire, null, Timeout.Infinite, Timeout.Infinite);
 }