chomens-bot-js/commands/cowsay.js

13 lines
353 B
JavaScript
Raw Normal View History

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