Update 'node/boto.js'

This commit is contained in:
Sarimoko 2022-02-12 20:27:34 +00:00
parent 3df6ea11f9
commit 1d1b573d5d
1 changed files with 17 additions and 22 deletions

View File

@ -72,6 +72,14 @@ client.on('message', (channel, tags, message, self) => {
command === 'lessons') {
client.say(channel, `/me The Dojo | Get 1on1 training from Sarimoko or browse his collection of DIY coarses, guides, lessons, & tutorials available at: https://dojo.sarimoko.com/`);
}
// RULE
if(command === 'rule' ||
command === 'rules') {
client.say(channel, `Chat Rule Reminder`);
client.say(channel, `/me 1. Do NOT feed the Trolls!`);
client.say(channel, `/me 2. Do NOT be a Troll!`);
client.say(channel, `/me 3. Do NOT be another brick in the wall!`);
}
// TUNE
if(command === 'tune' ||
command === 'lyrics' ||
@ -100,24 +108,11 @@ client.on('message', (channel, tags, message, self) => {
command === 'shoutout') {
client.say(channel, `/me Bleep! Bloop! Roll the clip! Smash @${args.join(' ')}'s follow button at: https://twitch.tv/${args.join(' ')}`);
}
// MOD | SUSS / Monitor
if(command === 'suss' ||
command === 'sussaf' ||
command === 'monitor' ||
command === 'vet') {
client.say(channel, `/me Bleep-Bloop! ${tags.username} just put @${args.join(' ')} on the suss list! All communications will be monitored & tracked for national security!`);
client.say(channel, `/monitor ${args.join(' ')}`);
}
if(command === 'sussoff' ||
command === 'sussafoff' ||
command === 'monitoroff' ||
command === 'unmonitor' ||
command === 'vetoff') {
client.say(channel, `/me Bleep-Bloop! ${tags.username} just put @${args.join(' ')} on the suss list! All communications will be monitored & tracked for national security!`);
client.say(channel, `/unmonitor ${args.join(' ')}`);
}
// CHAT MODE: Emotes
// MOD TOOLS
// CHAT MODES
// 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 `);
@ -127,7 +122,7 @@ client.on('message', (channel, tags, message, self) => {
client.say(channel, `/me Bleep! Bloop! ${tags.username} turned off EMOTE ONLY chat! Chatter freely!`);
client.say(channel, `/emoteonlyoff `);
}
// CHAT MODE: Slow
// Slow
if(command === 'slow' ||
command === 'slowchat') {
client.say(channel, `/me Bleep! Bloop! ${tags.username} just activated SLOW MODE chat! Send a message every ${args.join(' ')} seconds, that give @Sarimoko time to ketchup!`);
@ -138,8 +133,7 @@ client.on('message', (channel, tags, message, self) => {
client.say(channel, `/me Bleep! Bloop! ${tags.username} turned off SLOW MODE chat! Chatter freely!`);
client.say(channel, `/slowoff `);
}
// CHAT MODE: Subs
// Subs
if(command === 'subsonly') {
client.say(channel, `/me Bleep! Bloop! ${tags.username} just activated SUBS ONLY chat! Loyal supports FTW!`);
client.say(channel, `/subscribers `);
@ -149,8 +143,7 @@ client.on('message', (channel, tags, message, self) => {
client.say(channel, `/me Bleep! Bloop! ${tags.username} turned off Subs ONLY chat! Welcome back you filthy followers!`);
client.say(channel, `/subscribersoff `);
}
// CHAT MODE: Normalizer
// Normalizer
if(command === 'norm' ||
command === 'normal' ||
command === 'normalize' ||
@ -161,6 +154,8 @@ client.on('message', (channel, tags, message, self) => {
client.say(channel, `/slowoff `);
client.say(channel, `/subscribersoff `);
}
// uniquechat / uniquechatoff
// endpoll deletepoll maybe poll? idk how the bot would edit it
// Run Ads | TODO Fix Permissions...
if(command === 'ad' ||