26 lines
No EOL
674 B
JavaScript
26 lines
No EOL
674 B
JavaScript
const name = 'credits'
|
|
const description = 'Shows bot credits.'
|
|
const usage = '{prefix}credits'
|
|
const aliases = ['credits']
|
|
const enabled = true
|
|
|
|
const permLevel = 0
|
|
|
|
function execute(bot, cmd, entity, args, handler) {
|
|
bot.core.run(`/tellraw @a ${JSON.stringify([
|
|
'',
|
|
{ text: 'Credits\n', color: bot.colors.primary, bold: true },
|
|
|
|
{ text: '_ChipMC_', color: 'blue' },
|
|
'created the bot.\n',
|
|
|
|
{ text: 'hhhzzzsss', color: 'aqua', bold: true },
|
|
' and ',
|
|
{ text: 'eva', color: 'light_purple', italic: true },
|
|
' created the midi converter.\n'//,
|
|
|
|
|
|
])}`)
|
|
}
|
|
|
|
module.exports = { name, description, usage, aliases, enabled, execute, permLevel } |