dimanche 1 mars 2015

Storing information with Twitch-Irc bot

I want to store a users name in the database whenever they enter the channel but it seems like it only logs the name of the first person that enters and nothing more.



module.exports = function(client) {
client.addListener('join', function (channel, username) {
client.db.insert('name', [ { name: username } ] );
});
};

Aucun commentaire:

Enregistrer un commentaire