chomens-bot-js/commands/echo.js

15 lines
414 B
JavaScript
Raw Normal View History

2022-08-14 05:51:45 -04:00
/* eslint-disable max-len */
module.exports = {
name: 'echo',
alias: [],
description: 'Says a message',
usage: '<message>',
trusted: 0,
2022-11-27 02:35:28 -05:00
execute: function (bot, username, usernameraw, sender, prefix, args, config, hash, ownerhash, selector) {
bot.chat(args.join(' '))
2022-08-14 05:51:45 -04:00
},
2022-11-27 02:35:28 -05:00
discordExecute: function (bot, username, usernameraw, sender, prefix, args, channeldc) {
bot.chat(args.join(' '))
}
}