gpt4 book ai didi

node.js - Discord 斜杠命令的交互失败

转载 作者:行者123 更新时间:2023-12-05 06:03:54 24 4
gpt4 key购买 nike

我的代码需要一些帮助,除了 Discord 中的 This Interaction Failed 之外,我没有收到任何错误。

我用于斜杠命令的代码:

    name: "random",
description: "Random Message",
options: [],
async execute(_bot, say, interaction) {
var facts = ["test1", "test2", "test3", "test4"];
var fact = Math.floor(Math.random() * facts.length);
await say(interaction, facts[fact]);
},
};

与我的前缀和非斜杠命令一起使用的代码:

exports.run = async (client, message, args) => {
var facts = ["test", "test2", "test3"];
var fact = Math.floor(Math.random() * facts.length);
message.channel.send(facts[fact]);
}```

最佳答案

而不是使用发送使用响应。例如:message.channel.respond(facts[fact])”

关于node.js - Discord 斜杠命令的交互失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66539260/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com