2022-08-14 05:51:45 -04:00
|
|
|
/* eslint-disable max-len */
|
|
|
|
const urban = require('urban-dictionary');
|
|
|
|
module.exports = {
|
|
|
|
name: 'urban',
|
|
|
|
alias: [],
|
|
|
|
description: 'Working Urban Dictionary',
|
|
|
|
usage: '<word>',
|
|
|
|
trusted: 0,
|
2022-11-16 06:41:30 -05:00
|
|
|
execute: function(bot, username, usernameraw, sender, prefix, args, config, hash, ownerhash, selector) {
|
2022-08-14 05:51:45 -04:00
|
|
|
urban.autocompleteExtra(args[0], (error, results) => {
|
|
|
|
if (error) {
|
2022-11-16 06:41:30 -05:00
|
|
|
bot.tellraw(selector, [{text: '[', color: 'dark_red'}, {text: 'Urban', color: 'red'}, {text: '] ', color: 'dark_red'}, {text: error.message, color: 'red'}]);
|
2022-08-14 05:51:45 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
results.forEach(({preview, term}) => {
|
2022-11-16 06:41:30 -05:00
|
|
|
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'}]);
|
2022-08-14 05:51:45 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
};
|