mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 18:54:55 -05:00
21 lines
661 B
JavaScript
21 lines
661 B
JavaScript
|
/* eslint-disable max-len */
|
||
|
const {MessageEmbed} = require('discord.js');
|
||
|
module.exports = {
|
||
|
name: 'bruhify',
|
||
|
alias: [],
|
||
|
description: 'RecycleBot bruhify but actionbar',
|
||
|
usage: '<message>',
|
||
|
trusted: 0,
|
||
|
execute: function(bot, username, usernameraw, sender, prefix, args) {
|
||
|
bot.bruhifyText = args.join(' ');
|
||
|
},
|
||
|
discordExecute: function(bot, username, usernameraw, sender, prefix, args, channeldc) {
|
||
|
bot.bruhifyText = args.join(' ');
|
||
|
const Embed = new MessageEmbed()
|
||
|
.setColor('#FFFF00')
|
||
|
.setTitle('Bruhify')
|
||
|
.setDescription(`Bruhify set to: ${bot.bruhifyText}`);
|
||
|
channeldc.send({embeds: [Embed]});
|
||
|
},
|
||
|
};
|