chomens-bot-js/commands/cowsay.js

13 lines
360 B
JavaScript
Raw Normal View History

2022-08-14 05:51:45 -04:00
/* eslint-disable max-len */
const cowsay = require('cowsay');
module.exports = {
name: 'cowsay',
alias: [],
description: 'Moo',
usage: '<message>',
trusted: 0,
execute: function(bot, username, usernameraw, sender, prefix, args) {
bot.core.run('minecraft:tellraw @a ' + JSON.stringify({text: `${cowsay.say({text: args.join(' ')})}`}));
},
};