9 lines
374 B
JavaScript
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
|
|
}
|