You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//IF USER JOINED TO THE BROADCAST => LOG
bot.addListener('join', function(channel, user) {
log(user + " joined");
});
//DISCONNECT
bot.addListener('part', function(channel, who, reason) {
console.log('«%s» has left %s: %s', who, channel, reason);
});
//IF USER GOT KICKED BY OP
bot.addListener('kick', function(channel, who, by, reason) {
console.log('«%s» was kicked from %s by %s: %s', who, channel, by, reason);
});
//CHECK IF BOT CONNECTED TO IRC CHAT
bot.addListener('connect', function(retryCount, callback) {
log("Successfully connected!");
})
Hi!
I tried to get the chat messages, but I can't see the messages in the console... Why?
console output:
The text was updated successfully, but these errors were encountered: