Update 'node/boto.js'
This commit is contained in:
parent
963136e651
commit
c1db5910fc
12
node/boto.js
12
node/boto.js
|
@ -54,6 +54,15 @@ 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(' ')}`);
|
||||
}
|
||||
if(command === 'mute' ||
|
||||
command === 'slap' ||
|
||||
command === 'timeout' ||
|
||||
command === 'warn') {
|
||||
client.say(channel, `/timeout ${args.join(' ')} 33`);
|
||||
client.say(channel, `/me Mods cast a 33sec Timeout Curse on @${args.join(' ')}, resistence to Bans is decreased!`);
|
||||
client.say(channel, `!kappagen sarimoRAGE sarimoNERD`);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}); // SCAN MSG | END
|
||||
|
@ -81,9 +90,10 @@ client.on("giftpaidupgrade", (channel, username, sender, userstate) => {
|
|||
// Huh? Tier 1 => Tier2
|
||||
});
|
||||
client.on("hosting", (channel, target, viewers) => {
|
||||
// client.say(channel, `/me BLEEP! BLOOP! @Sarimoko got hosted! Do something entertaining!`);
|
||||
client.say(channel, `/me BLEEP! BLOOP! @Sarimoko is auto-hosting various streamers! For more info: https://cord.sarimoko.com`);
|
||||
});
|
||||
client.on("join", (channel, username, self) => {
|
||||
console.log(tags.username, 'joined chat.');
|
||||
// client.say(channel, `/me +1 Chatter! Viewer or Bot...? Time will tell!`);
|
||||
});
|
||||
client.on("part", (channel, username, self) => {
|
||||
|
|
Loading…
Reference in New Issue