module.exports = { server: "127.0.0.1:3005", spectator: { name: "BrainletToIrcSpectator", password: "Put a secure password here. See the README for more info" }, motd: "A Brainlet to IRC translation layer.\n" + "SECURITY WARNING: The traffic to the Brainlet server is not encrypted.\n" + "Use \"/msg NickServ help\" to see how to use an account", responses: { NickServ: { help: `NickServ allows you to use and create a Brainlet account from IRC. You can use a command with "/msg NickServ " Commands: HELP - Shows this message REGISTER - Creates an account, using your current nick as the username. Note: The email is not directly used by IRC, but may be used by the Brainlet host. IDENTIFY - Logs into an account.`, // Sent on invalid command invalid: "Invalid command. Use \"/msg NickServ help\" for help", // Sent on an invalid entry. // %s is replaced with how it's invalid. invalidName: "Invalid username specified. %s", invalidEmail: "Invalid email specified. %s", invalidPassword: "Invalid password specified. %s" } } }