Example #1
0
 public RockTrigger(ircBot bot)
 {
     _bot = bot;
     _targets = new List<string>();
     addTargets();
     _secs = 0;
 }
Example #2
0
 public SimpleTrigger(ircBot bot, String text, int interval)
 {
     _bot = bot;
     _answerString = text;
     _interval = interval;
     _secs = 0;
 }
Example #3
0
 public Streams(ircBot bot)
 {
     _bot = bot;
     _filename = @"D:\programs\bin\data\streams.txt";
     _streamList = new List<StreamInfo>();
     loadFile();
 }
Example #4
0
 public UIWriteQueue(ircBot bot)
 {
     Bot = bot;
     timer = new Timer(100);
     timer.Elapsed += timer_Elapsed;
     Queue = new ConcurrentQueue<UIMessage>();
     timer.Enabled = true;
 }
Example #5
0
 public Music(ircBot bot, String filename, String purl)
 {
     _bot = bot;
     _filename = filename;
     _plLink = purl;
     _songs = new List<SongInfo>();
     loadFile();
     _number = _songs.Count;
 }
Example #6
0
 public Pictures(ircBot bot)
 {
     _bot = bot;
     _filename = @"D:\programs\bin\data\pictures.txt";
     _picList = new List<PicInfo>();
     _i = 0;
     _dpath = @"D:\Dropbox\Public\dstalker\";
     loadFile();
     CleanDFolder();
 }
Example #7
0
 public Log(ircBot bot)
 {
     Bot = bot;
     Content = new List<LogEntry>();
     EntryQueue = new ConcurrentQueue<LogEntry>();
     LoadLog();
     UpdateTimer = new Timer(5000);
     UpdateTimer.Elapsed += UpdateTimer_Elapsed;
     UpdateTimer.Enabled = true;
 }
 public VaguelyPinkRelated(ircBot bot)
 {
     _pictureLink = new List<string>();
     _bot = bot;
     for (int i = 1; i < 298; i++)
     {
         _pictureLink.Add(@"http://minus.com/m8ERQKe0K/" + i + "f");
     }
     for (int i = 1; i < 296; i++)
     {
         _pictureLink.Add(@"http://minus.com/mpn6HZcpz/" + i + "f");
     }
     for (int i = 1; i < 146; i++)
     {
         _pictureLink.Add(@"http://minus.com/mMmdYIHu4/" + i + "f");
     }
 }
Example #9
0
 public ReplyKICK(ircBot bot)
 {
     _bot = bot;
 }
Example #10
0
 public RandomLogEntry(ircBot bot)
 {
     Bot = bot;
 }
Example #11
0
 public EyeCancer(ircBot bot)
 {
     _bot = bot;
     _secs = 0;
 }
Example #12
0
 public ExecTrigger(ircBot bot)
 {
     Bot = bot;
 }
Example #13
0
 public RandomTrigger(ircBot bot)
 {
     _bot = bot;
 }
Example #14
0
 public Reply353(ircBot bot)
 {
     _bot = bot;
 }
Example #15
0
 public RandomLogStory(ircBot bot)
 {
     Bot = bot;
 }
Example #16
0
 public FullUI(ircBot bot)
 {
     InitializeComponent();
     _bot = bot;
     Icon = new Icon("appicon.ico");
 }
Example #17
0
 public CTCPVersion(ircBot bot)
 {
     Bot = bot;
 }
Example #18
0
 public Reply376(ircBot bot)
 {
     _bot = bot;
 }
Example #19
0
 public ReplyJOIN(ircBot bot)
 {
     _bot = bot;
 }
Example #20
0
 public ReplyPART(ircBot bot, NickList nl)
 {
     _bot = bot;
     _nickList = nl;
 }
Example #21
0
 public FormThread(ircBot bot, Form form)
 {
     _bot = bot;
     _form = form;
 }
Example #22
0
 public ReplyPART(ircBot bot)
 {
     _bot = bot;
 }
Example #23
0
 public TabaHelp(ircBot bot, Hashtable triggers)
 {
     _bot = bot;
     _t = triggers;
 }