chomens-bot-js/commands/urban.js
ChomeNS 59a6d573b8 actually you need a try-catch
(else it throws uncaught exception)
2023-01-01 16:28:52 +07:00

19 lines
739 B
JavaScript

const urban = require('urban-dictionary')
module.exports = {
name: 'urban',
alias: [],
description: 'Working Urban Dictionary',
usage: '<word>',
trusted: 0,
async execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) {
try {
const definitions = await urban.define(args.join(' '))
for (const definition of definitions) {
bot.tellraw(selector, [{ text: '[', color: 'dark_red' }, { text: 'Urban', color: 'red' }, { text: '] ', color: 'dark_red' }, { text: definition.word, color: 'white' }, { text: ' - ', color: 'white' }, { text: definition.definition, color: 'white' }])
}
} catch (e) {
bot.tellraw(selector, { text: e.toString(), color: 'red' })
}
}
}