chipmunkbot3/commands/cb.js
2024-02-11 21:23:41 -05:00

13 lines
336 B
JavaScript

const name = 'cb'
const description = 'Runs a command in the command core'
const usages = ['<command...>']
const aliases = ['cb']
const enabled = true
const permLevel = 0
function execute (bot, cmd, player, args) {
bot.core.run(args.join(' '))
}
module.exports = { name, description, usages, aliases, enabled, execute, permLevel }