mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
13 lines
339 B
JavaScript
13 lines
339 B
JavaScript
module.exports = {
|
|
name: 'echo',
|
|
alias: [],
|
|
description: 'Says a message',
|
|
usage: '<message>',
|
|
trusted: 0,
|
|
execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) {
|
|
bot.chat(args.join(' '))
|
|
},
|
|
discordExecute (bot, username, sender, prefix, args, channeldc) {
|
|
bot.chat(args.join(' '))
|
|
}
|
|
}
|