嵌入命令(颜色)(discord.js-commando)
Posted
技术标签:
【中文标题】嵌入命令(颜色)(discord.js-commando)【英文标题】:Embed Command (Colors) (discord.js-commando) 【发布时间】:2019-08-21 06:44:27 【问题描述】:我遇到了关于嵌入命令的问题,我试图让用户在此嵌入命令中选择颜色代码,但这是我遇到的错误:RangeError: Argument type "colorcode" isn't registered.
。
我的代码:
const Command = require('discord.js-commando');
const RichEmbed = require('discord.js');
module.exports = class EmbedCommand extends Command
constructor(client)
super(client,
name: 'embed',
group: 'extra commands',
memberName: 'embed',
description: 'Replies with the text you provide, But in Embed.',
args: [
key:"text",
prompt:"What Should the Embed Say?",
type:"string",
,
key:"color",
prompt:"What Color should the Embed be? (Use Color Codes.). Use RANDOM for Random Color. (Must Be All Caps!).",
type:'colorcode',
]
);
run(msg, text )
msg.delete();
let embed = new RichEmbed()
.setTitle(text)
.setColor(color)
msg.embed(embed)
;
.
有谁知道如何替换colorcode
?
【问题讨论】:
这里你可以找到更多关于默认参数类型的信息:discord.js.org/#/docs/commando/master/class/… 【参考方案1】:用type: 'string',
代替type:'colorcode',
,别忘了改:
run(msg, text )
到 run(msg, text, color )
。
您也可以转到discord.js Commando
的Repository 并创建一个Issue/Feature Request 以建议为Color/ColorResolveable
添加一个新类型。
【讨论】:
那行不通。 Bot 刚刚告诉我:运行命令时出错:ReferenceError: color is not defined
。
如果您的问题已解决,请使用答案左侧的绿色勾号将您的问题标记为已解决。以上是关于嵌入命令(颜色)(discord.js-commando)的主要内容,如果未能解决你的问题,请参考以下文章