如何嵌入用户需求?

时间:2018-06-13 08:29:28

标签: javascript discord discord.js

所以我正在编码一个不和谐的机器人并想知道我将如何做到这一点

如果用户输入

~embed Title Description Colour

它将输出符合要求的嵌入。

我该怎么做?

感谢@André

继承我的代码:https://ghostbin.com/paste/uetpj

1 个答案:

答案 0 :(得分:1)

一种方法是使用用户需要用来分隔字段的字符。与|;;一样。用户通常不会在消息中输入内容 然后,您可以使用该字符拆分消息。

var arguments = myString.split('|');

然后验证用户是否提供了所需的所有参数:

if(arguments && arguments.length == 3){
    // keep going
} else {
    // warn the user that the syntax is wrong
}

最后你需要生成嵌入。

var embed = new Discord.RichEmbed();
embed.setTitle(arguments[0]);
embed.setDescription(arguments[1]);
embed.setColor(arguments[2]);