Update 'node/boto.js'

This commit is contained in:
Sarimoko 2022-02-12 21:20:10 +00:00
parent fef62accbb
commit 9b770a7c22
1 changed files with 30 additions and 5 deletions

View File

@ -53,15 +53,40 @@ client.on('message', (channel, tags, message, self) => {
if(command === 'dice' || if(command === 'dice' ||
command === 'roll') { command === 'roll') {
const result = Math.floor(Math.random() * 6) + 1; const result = Math.floor(Math.random() * 6) + 1;
client.say(channel, `@${tags.username} has rolled a ${result}! Praise RNGesus!`); client.say(channel, `/me Bleep-Bloop! @${tags.username} has rolled a ${result}! Praise RNGesus!`);
}
// LURK
if(command === 'lurk' ||
command === 'lurkin' ||
command === 'lurking') {
client.say(channel, `/me Bleep-Bloop! Thanks for lurking, your viewership & support is much appriciated!`);
client.say(channel, `!kappagen sarimoLURKbrb sarimoKO sarimoLURKbrb sarimoKO sarimoLURKbrb sarimoKO `);
}
// RAID
if(command === 'raid' ||
command === 'raidcall' ||
command === 'spam' ||
command === 'spamwars') {
client.say(channel, `!kappagen sarimoRAID sarimoFREEDOM sarimoRAID sarimoFREEDOM sarimoRAID sarimoFREEDOM`);
client.say(channel, `/me Thanks everyone for watching!!! PREPARE TO SPAM!`);
client.say(channel, `/me Copy'n'Paste the following: (Yes, even if you don't have a sub... We know your a sub at PrideHeartL PrideHeartR LuvHearts`);
client.say(channel, `sarimoRAID sarimoFREEDOM You may take us viewers, but you'll NEVER take our FREEDOM!`);
} }
// RULE // RULE
if(command === 'rule' || if(command === 'rule' ||
command === 'rules') { command === 'rules') {
client.say(channel, `Chat Rule Reminder`); client.say(channel, `/me Bleep-Bloop! Reminder of the Chat Rules`);
client.say(channel, `/me 1. Do NOT feed the Trolls!`); client.say(channel, `1. Do NOT feed the Trolls!`);
client.say(channel, `/me 2. Do NOT be a Troll!`); client.say(channel, `2. Do NOT be a Troll!`);
client.say(channel, `/me 3. Do NOT be another brick in the wall!`); client.say(channel, `3. Do NOT be another brick in the wall!`);
}
// Sale
if(command === 'sale' ||
command === 'buygames' ||
command === 'humble' ||
command === 'bundle' ||
command === 'humblebundle') {
client.say(channel, `/me Bleep-Bloop! Get sales & give to charity! Win + win, right?! Check out HumbleBundle, use this affiliated link to support the stream: https://www.humblebundle.com/?partner=rusttv`);
} }
// TIME // TIME
if(command === 'time' || if(command === 'time' ||