From f8b39037a125ea436653698548216a84d0242fcc Mon Sep 17 00:00:00 2001 From: 7cc5c4f330d47060 Date: Fri, 19 Jul 2024 15:12:54 -0400 Subject: [PATCH] Add refill core command --- plugins/commands/refill.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 plugins/commands/refill.js diff --git a/plugins/commands/refill.js b/plugins/commands/refill.js new file mode 100644 index 0000000..2cf163d --- /dev/null +++ b/plugins/commands/refill.js @@ -0,0 +1,10 @@ +module.exports={ + execute: (c)=>{ + c.bot.chat(`/fill ~ 20 ~ ~3 25 ~3 command_block{CustomName:'{"translate":"pack.dropConfirm","color":"#FFAAFF"}'}`) + }, + desc: "Refill core", // Command description + usage: '', // Command usage + hidden: false, // 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: ["refillcore", "rc"] +}