Update 'node/boto.js'

This commit is contained in:
Sarimoko 2022-02-12 21:28:06 +00:00
parent 9b770a7c22
commit db76dcacf4
1 changed files with 6 additions and 0 deletions

View File

@ -55,6 +55,12 @@ client.on('message', (channel, tags, message, self) => {
const result = Math.floor(Math.random() * 6) + 1;
client.say(channel, `/me Bleep-Bloop! @${tags.username} has rolled a ${result}! Praise RNGesus!`);
}
// MTG Dice Roll
if(command === 'mtgdice' ||
command === 'mtgroll') {
const result = Math.floor(Math.random() * ${args.join(' ')}) + 1;
client.say(channel, `/me Bleep-Bloop! @${tags.username} has rolled a ${result}! Praise RNGesus!`);
}
// LURK
if(command === 'lurk' ||
command === 'lurkin' ||