-
-
Save UVClay/ffa57d9fb184e6cfcf4654f7c2295997 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
// 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