Added some stuff, changed how usererrs are called

This commit is contained in:
Emily 2020-04-13 19:29:47 +10:00
parent 9fd2c873ca
commit b36a746bb4
8 changed files with 149 additions and 21 deletions

33
commands/8ball.js Normal file
View file

@ -0,0 +1,33 @@
exports.conf = {
enabled: true,
guildOnly: false,
aliases: [],
permLevel: 'User',
requiredPerms: [],
cooldown: 2000
}
exports.help = {
name: '8ball',
category: 'Fun',
description: 'Retrieves an answer to your question from the almighty 8ball.',
usage: '`8ball [question]` - Retrieves an answer from 8ball based on the question or sentence provided.',
parameters: '`question` - the question you want to ask'
}
exports.run = async (client, message, args, level, data) => {
// Finish later
const responses = [
'No darndested clue.',
'¯\\_(ツ)_/¯',
'Stupid question. You should be ashamed of yourself for even asking.',
'Yes!',
'Not in your wildest dreams!',
'No chance.',
'Never.',
'Possibly.',
'There\'s a high chance.',
'I\'d rather not say.'
]
}