From 2167bbcdf188d28f49f4aa48d420ead271716bec Mon Sep 17 00:00:00 2001 From: Sarimoko Date: Sat, 12 Feb 2022 07:11:48 +0000 Subject: [PATCH] Update 'node/boto.js' --- node/boto.js | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/node/boto.js b/node/boto.js index e34e42e..a8a2fd1 100644 --- a/node/boto.js +++ b/node/boto.js @@ -50,10 +50,40 @@ client.on('message', (channel, tags, message, self) => { } if(isModUp) { + // ESSENTIAL if(command === 'so' || command === 'shoutout') { client.say(channel, `/me Bleep! Bloop! Roll the clip! Smash @${args.join(' ')}'s follow button at: https://twitch.tv/${args.join(' ')}`); } + // CHAT MODE: Emotes + if(command === 'emoteonly') { + client.say(channel, `/me Bleep! Bloop! ${tags.username} just activated EMOTE ONLY chat! Show Sir SPAM'a'LOT who's boss!`); + client.say(channel, `/emoteonly `); + } + if(command === 'emoteoff' || + command === 'emoteonlyoff') { + client.say(channel, `/me Bleep! Bloop! ${tags.username} turned off EMOTE ONLY chat! Chatter freely!`); + client.say(channel, `/emoteonlyoff `); + } + // CHAT MODE: Subs + if(command === 'subsonly') { + client.say(channel, `/me Bleep! Bloop! ${tags.username} just activated SUBS ONLY chat! Loyal supports FTW!`); + client.say(channel, `/subscribers `); + } + if(command === 'subsoff' || + command === 'subscribersoff') { + client.say(channel, `/me Bleep! Bloop! ${tags.username} turned off Subs ONLY chat! Welcome back you filthy followers!`); + client.say(channel, `/subscribersoff `); + } + // CHAT MODE: Normal + if(command === 'norm' || + command === 'normal') { + client.say(channel, `/me Bleep! Bloop! ${tags.username} what did you do! Lets fix things...`); + client.say(channel, `/emoteonlyoff `); + client.say(channel, `/followersoff `); + client.say(channel, `/slowoff `); + client.say(channel, `/subscribersoff `); + } } }); // SCAN MSG | END