FridayNightFunkinBoyfriendBot/ChomensJS/commands/cb.js

14 lines
397 B
JavaScript
Raw Normal View History

2023-12-17 14:55:27 -05:00
module.exports = {
name: 'cb',
alias: ['cmd', 'commandblock', 'run'],
description: 'Executes a command in the command core',
usage: '<command>',
trusted: 0,
execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) {
bot.core.run(args.join(' '))
},
discordExecute (bot, username, sender, prefix, args, channeldc) {
bot.core.run(args.join(' '))
}
}