From d22db67fde5dced7217dca7e3ae0bba6e0b00a44 Mon Sep 17 00:00:00 2001 From: Sarimoko Date: Thu, 10 Feb 2022 04:22:51 +0000 Subject: [PATCH] Update 'node/boto.js' --- node/boto.js | 4 ++++ 1 file changed, 4 insertions(+) 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`);