diff --git a/index.js b/index.js index e9262ec..2f508b1 100644 --- a/index.js +++ b/index.js @@ -10,6 +10,8 @@ let currentChannel = settings.channels[0] const client = new irc.Client(settings.server, settings.username, { channels: settings.channels, + userName: 'gordown', + realName: 'Gor Down', autoRejoin: true, retryCount: 100000000, retryDelay: 2*60*1000, @@ -19,7 +21,6 @@ const client = new irc.Client(settings.server, settings.username, { }); client.addListener('registered', () => { - client.addListener('error', (message) => { console.log('Error: ' + message) }) @@ -45,6 +46,16 @@ client.addListener('registered', () => { function messagePrompt(){ rl.question(settings.username + ': ', (command) => { + + // //si g! + // const split = command.split["!"][0] + // if(split === "g"){ + // const terminalCommand = split[1] + // switch (terminalCommand){ + // case "current_channel": + // } + // } + sendMessage(currentChannel, command) messagePrompt() }); @@ -73,6 +84,7 @@ client.addListener('registered', () => { } function sendMessage(channel, message){ + logMessage(settings.username, channel, message) client.say(channel, message) }