因此,我当前的文件夹结构有一个名为commands
的子文件夹,里面有一堆名为x.js
的文件用于命令。其中一个是version.js
,我希望能够为此添加别名,这样人们就不需要一直输出!version
。然而,我遇到的问题是我需要更新这两个文件而且我想知道(没有好运的搜索)如果有机会将我的机器人读!vers
作为!version
或每次version
运行时始终从!vers
获取相同的代码。
这里是我用来加载所选命令和检测的代码。
const init = async() => {
if (message.author.bot) return;
// Here we load **commands** into memory, as a collection, so they're accessible here and everywhere else.
const cmdFiles = await readdir("./commands/");
client.logger.log("Loading a total of ${cmdFiles.length} commands.");
cmdFiles.forEach(f => {
if (!f.endsWith(".js")) return;
const response = client.loadCommand(f);
if (response) console.log(response);
});
}
任何帮助或至少指向正确的方向都会被贬低:D