diff --git a/plugins/commands/cb.js b/plugins/commands/cb.js new file mode 100644 index 0000000..1ead3eb --- /dev/null +++ b/plugins/commands/cb.js @@ -0,0 +1,10 @@ +module.exports={ + execute: (c)=>{ + c.bot.ccq.push(c.args.join(" ")) + }, + desc: "Run a command in a command block", // Command description + usage: ' ', // Command usage + hidden: true, // To show the command on the help command list, remove this line + 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 +}