diff --git a/node/boto.js b/node/boto.js index ed347bf..d8b0e78 100644 --- a/node/boto.js +++ b/node/boto.js @@ -51,6 +51,10 @@ client.on("hosting", (channel, target, viewers) => { // Do your stuff. client.say(channel, `/me Host Test`); }); +client.on("join", (channel, username, self) => { + // Do your stuff. + client.say(channel, `/me +1 Chatter`); +}); client.on("part", (channel, username, self) => { // Do your stuff. client.say(channel, `/me -1 Chatter`);