Give Techbot the ability to check for and ghost existing bots, then rename itself

svn path=/trunk/; revision=35264
This commit is contained in:
Ged Murphy 2008-08-10 13:06:58 +00:00
parent b2a074adbf
commit 197cc3f634
3 changed files with 99 additions and 8 deletions

View file

@ -17,10 +17,12 @@ namespace TechBot.IRCLibrary
public const string PRIVMSG = "PRIVMSG";
public const string USER = "USER";
public const string PASS = "PASS";
public const string GHOST = "MSG NICKSERV GHOST";
public const string GHOST = "NICKSERV GHOST";
public const string NOTICE = "NOTICE";
public const string RPL_NAMREPLY = "353";
public const string RPL_ENDOFNAMES = "366";
public const string ERR_NICKNAMEINUSE = "433";
#endregion