Update 'node/boto.js'
This commit is contained in:
parent
a6bb99c60b
commit
2167bbcdf1
30
node/boto.js
30
node/boto.js
|
@ -50,10 +50,40 @@ client.on('message', (channel, tags, message, self) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
if(isModUp) {
|
if(isModUp) {
|
||||||
|
// ESSENTIAL
|
||||||
if(command === 'so' ||
|
if(command === 'so' ||
|
||||||
command === 'shoutout') {
|
command === 'shoutout') {
|
||||||
client.say(channel, `/me Bleep! Bloop! Roll the clip! Smash @${args.join(' ')}'s follow button at: https://twitch.tv/${args.join(' ')}`);
|
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
|
}); // SCAN MSG | END
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue