mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 18:54:55 -05:00
30 lines
1 KiB
JavaScript
30 lines
1 KiB
JavaScript
|
/* eslint-disable max-len */
|
||
|
const changelog = require('../changelog.json');
|
||
|
const {MessageEmbed} = require('discord.js');
|
||
|
module.exports = {
|
||
|
name: 'changelog',
|
||
|
alias: ['changelogs'],
|
||
|
description: 'Shows the bot\'s changelog',
|
||
|
usage: '',
|
||
|
trusted: 0,
|
||
|
execute: function(bot) {
|
||
|
bot.core.run('minecraft:tellraw @a ' + JSON.stringify([{text: 'Changelogs:', color: 'green'}]));
|
||
|
changelog.forEach((message, number) => {
|
||
|
number += 1;
|
||
|
bot.core.run('minecraft:tellraw @a ' + JSON.stringify([{text: `${number}`, color: 'gray'}, {text: ' - ', color: 'dark_gray'}, {text: message, color: 'gray'}]));
|
||
|
});
|
||
|
},
|
||
|
discordExecute: function(bot, username, usernameraw, sender, prefix, args, channeldc) {
|
||
|
changelogs = '';
|
||
|
changelog.forEach((message, number) => {
|
||
|
number += 1;
|
||
|
changelogs += `\`${number}\` - \`${message}\`` + '\n';
|
||
|
});
|
||
|
const Embed = new MessageEmbed()
|
||
|
.setColor('#FFFF00')
|
||
|
.setTitle('Changelogs')
|
||
|
.setDescription(changelogs);
|
||
|
channeldc.send({embeds: [Embed]});
|
||
|
},
|
||
|
};
|