Give Techbot the ability to check for and ghost existing bots, then rename itself
[reactos.git] / irc / TechBot / TechBot.IRCLibrary / IRC.cs
1 using System;
2
3 namespace TechBot.IRCLibrary
4 {
5 /// <summary>
6 /// IRC constants and helper methods.
7 /// </summary>
8 public class IRC
9 {
10 #region IRC commands
11
12 public const string JOIN = "JOIN";
13 public const string NICK = "NICK";
14 public const string PART = "PART";
15 public const string PING = "PING";
16 public const string PONG = "PONG";
17 public const string PRIVMSG = "PRIVMSG";
18 public const string USER = "USER";
19 public const string PASS = "PASS";
20 public const string GHOST = "NICKSERV GHOST";
21 public const string NOTICE = "NOTICE";
22
23 public const string RPL_NAMREPLY = "353";
24 public const string RPL_ENDOFNAMES = "366";
25 public const string ERR_NICKNAMEINUSE = "433";
26
27 #endregion
28
29 }
30 }