mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
19 lines
714 B
JavaScript
19 lines
714 B
JavaScript
/* eslint-disable max-len */
|
|
const {MessageEmbed} = require('discord.js');
|
|
module.exports = {
|
|
name: 'creator',
|
|
alias: [],
|
|
description: 'Shows the bot\'s creator',
|
|
usage: '',
|
|
trusted: 0,
|
|
execute: function(bot) {
|
|
bot.core.run('minecraft:tellraw @a ' + JSON.stringify([{text: 'ChomeNS Bot ', color: 'yellow'}, {text: 'was created by ', color: 'white'}, {text: 'chayapak', color: 'gold'}]));
|
|
},
|
|
discordExecute: function(bot, username, usernameraw, sender, prefix, args, channeldc, message) {
|
|
const Embed = new MessageEmbed()
|
|
.setColor('#FFFF00')
|
|
.setTitle('Creator')
|
|
.setDescription('ChomeNS Bot was created by chayapak');
|
|
channeldc.send({embeds: [Embed]});
|
|
},
|
|
};
|