mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 18:54:55 -05:00
12 lines
309 B
JavaScript
12 lines
309 B
JavaScript
|
/* 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'}));
|
||
|
},
|
||
|
};
|