尝试为 Discord bot 提供多个命令文件
Posted
技术标签:
【中文标题】尝试为 Discord bot 提供多个命令文件【英文标题】:Trying to have multiple command files for Discord bot 【发布时间】:2018-11-21 00:37:16 【问题描述】:问题:有没有办法让一个不和谐机器人拥有多个命令文件?
我所说的“命令文件”是指包含 if/else 语句和供用户实际交互的命令的文件。
我所说的“多个文件”是指制作多个可以响应命令的“命令文件”。
我正在尝试将我的乐趣和管理命令拆分为 2 个单独的文件,但目前只有一个在工作。我知道问题之一在于 package.json 文件,它说:“main”:“index.js”,
"name": "n00bly783",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts":
"test": "echo \"Error: no test specified\" && exit 1"
,
"author": "",
"license": "ISC",
"dependencies":
"discord.js": "^11.2.1",
"discord.js-commando": "^0.9.0"
有没有办法将单个 package.json 文件连接到多个其他 .js 文件?如果是这样,我需要做的就是让多个 discord bot .js 文件开始工作吗?
【问题讨论】:
【参考方案1】:您不一定需要编辑包 .json。
要使用多个文件,您只需执行以下操作:
(commandfile1.js)
module.exports =
commandName:
variableToCallToRunFunction: (arguments) => //usually called run
//the command
(mainfile.js)
commandfile1 = require('./commandfile1.js') //if commandfile1 is in the same folder as this file
yourBot.on('message', msg =>
if (msg.content.startsWith(yourPrefix)
cmdmsg = msg.content.replace(yourprefix, '')
for (command in commandfile1)
if (cmdmsg.startsWith(commandfile1[command]))
commandfile1[command].variableToCallToRunFunction(arguments) //usually just .run()
这是一种方法,您所要做的就是将单独的命令文件导出为对象,并使每个命令成为对象中的单独条目。然后,每次发送带有您的机器人前缀的消息时,循环遍历所有命令并运行用户指定的命令。
【讨论】:
即使使用这种方法,它仍然迫使我在一个页面上仍然有一堆 if/else 语句?以上是关于尝试为 Discord bot 提供多个命令文件的主要内容,如果未能解决你的问题,请参考以下文章
Discord.js Bots // 尝试在主文件中添加多个机器人,设置状态,随机化欢迎消息,多个前缀
Discord bot 清除命令错误 [INVALID_TYPE]:提供的选项不是对象
Discord bot 更改前缀命令出错 (discord.js)