chomens-bot-js/commands/bruhify.js

20 lines
656 B
JavaScript
Raw Normal View History

const { EmbedBuilder } = require('discord.js')
2022-08-14 05:51:45 -04:00
module.exports = {
name: 'bruhify',
alias: [],
description: 'RecycleBot bruhify but actionbar',
usage: '<message>',
trusted: 0,
execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) {
2022-11-27 02:35:28 -05:00
bot.bruhifyText = args.join(' ')
2022-08-14 05:51:45 -04:00
},
discordExecute (bot, username, sender, prefix, args, channeldc, message, config) {
2022-11-27 02:35:28 -05:00
bot.bruhifyText = args.join(' ')
const Embed = new EmbedBuilder()
2022-12-01 05:15:30 -05:00
.setColor(config.discord.embedsColors.normal)
2022-11-27 02:35:28 -05:00
.setTitle('Bruhify')
.setDescription(`Bruhify set to: ${bot.bruhifyText}`)
channeldc.send({ embeds: [Embed] })
}
}