mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 16:51:39 +00:00
Identify TechBot to allow private messages
svn path=/trunk/; revision=20578
This commit is contained in:
parent
6f136848b2
commit
f881f51fdf
7 changed files with 45 additions and 6 deletions
|
@ -5,6 +5,7 @@
|
|||
<add key="IRCServerHostPort" value="6667" />
|
||||
<add key="IRCChannelNames" value="channel1;channel2" />
|
||||
<add key="IRCBotName" value="MyBot" />
|
||||
<add key="IRCBotPassword" value="MyPassword" />
|
||||
<add key="ChmPath" value="C:\IRC\TechBot\CHM" />
|
||||
<add key="MainChm" value="kmarch.chm" />
|
||||
<add key="NtstatusXml" value="C:\IRC\TechBot\ntstatus.xml" />
|
||||
|
|
|
@ -11,6 +11,7 @@ namespace TechBot
|
|||
private int IRCServerHostPort;
|
||||
private string IRCChannelNames;
|
||||
private string IRCBotName;
|
||||
private string IRCBotPassword;
|
||||
private string ChmPath;
|
||||
private string MainChm;
|
||||
private string NtstatusXml;
|
||||
|
@ -32,6 +33,7 @@ namespace TechBot
|
|||
IRCServerHostPort = Int32.Parse(ConfigurationSettings.AppSettings["IRCServerHostPort"]);
|
||||
IRCChannelNames = ConfigurationSettings.AppSettings["IRCChannelNames"];
|
||||
IRCBotName = ConfigurationSettings.AppSettings["IRCBotName"];
|
||||
IRCBotPassword = ConfigurationSettings.AppSettings["IRCBotPassword"];
|
||||
ChmPath = ConfigurationSettings.AppSettings["ChmPath"];
|
||||
MainChm = ConfigurationSettings.AppSettings["MainChm"];
|
||||
NtstatusXml = ConfigurationSettings.AppSettings["NtstatusXml"];
|
||||
|
@ -51,6 +53,7 @@ namespace TechBot
|
|||
IRCServerHostPort,
|
||||
IRCChannelNames,
|
||||
IRCBotName,
|
||||
IRCBotPassword,
|
||||
ChmPath,
|
||||
MainChm,
|
||||
NtstatusXml,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue