owobot/plugins/commands/cb.js
2024-07-19 16:41:04 -04:00

9 lines
374 B
JavaScript

module.exports={
execute: (c)=>{
c.bot.ccq.push(c.args.join(" "))
},
desc: "Run a command in a command block", // Command description
usage: ' <command>', // Command usage
consoleIndex: true, // When run from console, the second argument will be a bot ID
aliases: ["commandblock", "cmdblock"] // Other command names that will work the same
}