chomens-bot-js/commands/creator.js

12 lines
309 B
JavaScript
Raw Normal View History

2022-08-14 05:51:45 -04:00
/* eslint-disable max-len */
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 was created by chayapak', color: 'yellow'}));
},
};