Update 'node/boto.js'

This commit is contained in:
Sarimoko 2022-02-12 23:37:10 +00:00
parent ba50b8e50e
commit b8ebbd487d
1 changed files with 2 additions and 2 deletions

View File

@ -113,7 +113,7 @@ 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, `/me Bleep-Bloop! @${tags.username} has rolled a ${result}! Praise RNGesus!`); client.say(channel, `/me RNGesus has rolled @${tags.username} a ${result}!`);
} }
// CMD | Dojo // CMD | Dojo
if(command === 'dojo' || if(command === 'dojo' ||
@ -193,7 +193,7 @@ client.on('message', (channel, tags, message, self) => {
command === 'cv' || command === 'cv' ||
command === 'resume' || command === 'resume' ||
command === 'portfolio') { command === 'portfolio') {
client.say(channel, `/me First off, thank you ${tags.username} for even considering contributing directly! Amazon Wishlists have been split into sub-categories and are available at: https://wish.sarimoko.com/ `); client.say(channel, `/me Who's asking? ${tags.username} if you're a cop you HAVE to tell me, right?! CV/Portfolio/Resume is available at: https://whom.sarimoko.com/ `);
} }
// CMD | Wish // CMD | Wish
if(command === 'wish' || if(command === 'wish' ||