-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.config.example
36 lines (36 loc) · 2.05 KB
/
App.config.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="utf-8"?>
<!--fill out the keys and rename this file to App.config-->
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Interactive.Async" publicKeyToken="94bc3704cddfc263" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-3.0.3000.0" newVersion="3.0.3000.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<!--fill out the keys and rename this file to App.config-->
<appSettings>
<add key="IRCServer" value="server.address" />
<add key="IRCLobby" value="#channelname" />
<add key="ServerPass" value="password needed to connect to irc server to match an ircd exception that allows multiple sessions" />
<add key="NickservPass" value="nickserv pass for the relay bot" />
<add key="DiscordBotToken" value="token given by discord bot setup" />
<add key="DiscordBotDiscriminator" value="appears after the # in the discord bot's name" />
<add key="DiscordServerID" value="long number" />
<add key="DiscordLobbyID" value="will be the ID of the mirror channel for #luna or #speedrunslive etc" />
<add key="DiscordLobbyRoleID" value="will be the ID of the role that gets assigned to everyone who authenticates in order to access the lobby" />
<add key="AuthorizedInviter" value="name of the IRC bot that invites users to generated channels for races/parties" />
</appSettings>
</configuration>