Update 'node/boto.js'
This commit is contained in:
parent
c0eb4fa952
commit
98cc50be26
22
node/boto.js
22
node/boto.js
|
@ -45,17 +45,9 @@ client.on('message', (channel, tags, message, self) => {
|
||||||
client.say(channel, `/me Out of the entire hex (#000000) spectrum or the preset color names: Blue, BlueViolet, CadetBlue, Chocolate, Coral, DodgerBlue, Firebrick, GoldenRod, Green, HotPink, OrangeRed, Red, SeaGreen, SpringGreen, YellowGreen you choose ${args.join(' ')}... Welp, alright!`);
|
client.say(channel, `/me Out of the entire hex (#000000) spectrum or the preset color names: Blue, BlueViolet, CadetBlue, Chocolate, Coral, DodgerBlue, Firebrick, GoldenRod, Green, HotPink, OrangeRed, Red, SeaGreen, SpringGreen, YellowGreen you choose ${args.join(' ')}... Welp, alright!`);
|
||||||
}
|
}
|
||||||
// CORD
|
// CORD
|
||||||
// CREW
|
if(command === 'cord' ||
|
||||||
if(command === 'crew' ||
|
command === 'discord') {
|
||||||
command === 'mod' ||
|
client.say(channel, `/me The Cord by Sarimoko is joinable & sharable at: https://cord.sarimoko.com/`);
|
||||||
command === 'mods' ||
|
|
||||||
command === 'vip' ||
|
|
||||||
command === 'vips') {
|
|
||||||
client.say(channel, `!kappagen sarimoLURKbrb sarimoBANG sarimoHYPE `);
|
|
||||||
client.say(channel, `/me Bleep-Bloop! Mods Squad:`);
|
|
||||||
client.say(channel, `/mods`);
|
|
||||||
client.say(channel, `/me Bleep-Bloop! Honored VIPs:`);
|
|
||||||
client.say(channel, `/vips`);
|
|
||||||
}
|
}
|
||||||
// Dice Roll
|
// Dice Roll
|
||||||
if(command === 'dice' ||
|
if(command === 'dice' ||
|
||||||
|
@ -63,6 +55,14 @@ client.on('message', (channel, tags, message, self) => {
|
||||||
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, `@${tags.username} has rolled a ${result}! Praise RNGesus!`);
|
||||||
}
|
}
|
||||||
|
// 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!`);
|
||||||
|
}
|
||||||
// TODO:
|
// TODO:
|
||||||
// Uptime
|
// Uptime
|
||||||
// Viewers
|
// Viewers
|
||||||
|
|
Loading…
Reference in New Issue