Exemplo n.º 1
0
 public RockTrigger(ircBot bot)
 {
     _bot = bot;
     _targets = new List<string>();
     addTargets();
     _secs = 0;
 }
Exemplo n.º 2
0
 public SimpleTrigger(ircBot bot, String text, int interval)
 {
     _bot = bot;
     _answerString = text;
     _interval = interval;
     _secs = 0;
 }
Exemplo n.º 3
0
 public Streams(ircBot bot)
 {
     _bot = bot;
     _filename = @"D:\programs\bin\data\streams.txt";
     _streamList = new List<StreamInfo>();
     loadFile();
 }
Exemplo n.º 4
0
 public UIWriteQueue(ircBot bot)
 {
     Bot = bot;
     timer = new Timer(100);
     timer.Elapsed += timer_Elapsed;
     Queue = new ConcurrentQueue<UIMessage>();
     timer.Enabled = true;
 }
Exemplo n.º 5
0
 public Music(ircBot bot, String filename, String purl)
 {
     _bot = bot;
     _filename = filename;
     _plLink = purl;
     _songs = new List<SongInfo>();
     loadFile();
     _number = _songs.Count;
 }
Exemplo n.º 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();
 }
Exemplo n.º 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;
 }
Exemplo n.º 8
0
 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");
     }
 }
Exemplo n.º 9
0
 public ReplyKICK(ircBot bot)
 {
     _bot = bot;
 }
Exemplo n.º 10
0
 public RandomLogEntry(ircBot bot)
 {
     Bot = bot;
 }
Exemplo n.º 11
0
 public EyeCancer(ircBot bot)
 {
     _bot = bot;
     _secs = 0;
 }
Exemplo n.º 12
0
 public ExecTrigger(ircBot bot)
 {
     Bot = bot;
 }
Exemplo n.º 13
0
 public RandomTrigger(ircBot bot)
 {
     _bot = bot;
 }
Exemplo n.º 14
0
 public Reply353(ircBot bot)
 {
     _bot = bot;
 }
Exemplo n.º 15
0
 public RandomLogStory(ircBot bot)
 {
     Bot = bot;
 }
Exemplo n.º 16
0
 public FullUI(ircBot bot)
 {
     InitializeComponent();
     _bot = bot;
     Icon = new Icon("appicon.ico");
 }
Exemplo n.º 17
0
 public CTCPVersion(ircBot bot)
 {
     Bot = bot;
 }
Exemplo n.º 18
0
 public Reply376(ircBot bot)
 {
     _bot = bot;
 }
Exemplo n.º 19
0
 public ReplyJOIN(ircBot bot)
 {
     _bot = bot;
 }
Exemplo n.º 20
0
 public ReplyPART(ircBot bot, NickList nl)
 {
     _bot = bot;
     _nickList = nl;
 }
Exemplo n.º 21
0
 public FormThread(ircBot bot, Form form)
 {
     _bot = bot;
     _form = form;
 }
Exemplo n.º 22
0
 public ReplyPART(ircBot bot)
 {
     _bot = bot;
 }
Exemplo n.º 23
0
 public TabaHelp(ircBot bot, Hashtable triggers)
 {
     _bot = bot;
     _t = triggers;
 }