Skip to content

Instantly share code, notes, and snippets.

@UVClay
Created May 4, 2016 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save UVClay/ffa57d9fb184e6cfcf4654f7c2295997 to your computer and use it in GitHub Desktop.
Save UVClay/ffa57d9fb184e6cfcf4654f7c2295997 to your computer and use it in GitHub Desktop.
[
// Bot 2 (advanced options):
{
"nickname": "test",
"server": "irc.bottest.org",
"discordEmail": "user@mail.com",
"discordPassword": "letmein123",
"autoSendCommands": [ // Commands that will be sent on connect
["PRIVMSG", "NickServ", "IDENTIFY password"],
["MODE", "test", "+x"],
["AUTH", "test", "password"]
],
"channelMapping": { // Maps each Discord-channel to an IRC-channel, used to direct messages to the correct place
"#discord": "#irc channel-password" // Add channel keys after the channel name
},
"ircOptions": { // Optional node-irc options
"floodProtection": false, // On by default
"floodProtectionDelay": 1000 // 500 by default
},
"ircNickColor": false, // Gives usernames a color in IRC for better readability (on by default)
// Makes the bot hide the username prefix for messages that start
// with one of these characters (commands):
"commandCharacters": ["!", "."]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment