const urban = require('urban-dictionary') module.exports = { name: 'urban', alias: [], description: 'Working Urban Dictionary', usage: '', trusted: 0, execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { urban.autocompleteExtra(args[0], (error, results) => { if (error) { bot.tellraw(selector, [{ text: '[', color: 'dark_red' }, { text: 'Urban', color: 'red' }, { text: '] ', color: 'dark_red' }, { text: error.message, color: 'red' }]) return } results.forEach(({ preview, term }) => { bot.tellraw(selector, [{ text: '[', color: 'dark_red' }, { text: 'Urban', color: 'red' }, { text: '] ', color: 'dark_red' }, { text: term, color: 'white' }, { text: ' - ', color: 'white' }, { text: preview, color: 'white' }]) }) }) } }