Update 'node/boto.js'

This commit is contained in:
Sarimoko 2022-02-12 19:05:49 +00:00
parent 2adb0a7b99
commit 241285ddfa
1 changed files with 14 additions and 2 deletions

View File

@ -37,6 +37,11 @@ client.on('message', (channel, tags, message, self) => {
// CHAT COMMANDS | Start
// The Color
if(command === 'color') {
client.say(channel, `/color ${args.join(' ')}`);
client.say(channel, `/me Bleep! Bloop! @${tags.username} has changed my color to ${args.join(' ')}`);
}
// CORD
if(command === 'cord' ||
command === 'discord') {
@ -45,12 +50,19 @@ client.on('message', (channel, tags, message, self) => {
if(command === 'dice' ||
command === 'roll') {
const result = Math.floor(Math.random() * 6) + 1;
client.say(channel, `@${tags.username}, You rolled a ${result}.`);
client.say(channel, `@${tags.username} has rolled a ${result}! Praise RNGesus!`);
}
// DOJO
if(command === 'dojo' ||
command === 'lessons') {
client.say(channel, `/me The Dojo by Sarimoko a collection of coarses, guides, lessons, & tutorials available at: https://dojo.sarimoko.com/`);
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/`);
}
// TUNE
if(command === 'tune' ||
command === 'lyrics' ||
command === 'midi' ||
command === 'tabs') {
client.say(channel, `/me The Tune | Lyrics, MIDI, Tabs, & more hosted on Git written in Markdown available at: https://dojo.sarimoko.com/`);
}
// CHAT COMMANDS | End