【发布时间】:2021-09-12 05:29:45
【问题描述】:
我正在使用 discord.js 和 WOKCommands 来使用斜杠命令,但是当在 Discord 中输入时它给我一个错误“无效的交互应用程序命令”
这里是命令的代码:
const { MessageEmbed } = require("discord.js");
// Simple command for the message
module.exports = {
name: "ping",
slash: "both",
testOnly: false,
description: "Command to figure out what your current ping is. Also shows API Latency",
// Executing the message command
execute(client, message, cmd, args, Discord) {
// Creating the Embed const
const newEmbed = new MessageEmbed()
// ALL EMBED VALUES
.setColor("#ffdbac")
.setTitle("Ping")
.setDescription("Pong! Latency is **" + (Date.now() - message.createdTimestamp) + "ms**. API Latency is **" + message.client.ws.ping + "ms**")
.setThumbnail(`https://cometiclachlan.github.io/Uploads/pingpong-removebg.png`)
.setTimestamp()
.setFooter("v1.2", `https://cometiclachlan.github.io/Uploads/Checkpoint-removebg.png`);
message.channel.send(newEmbed);
},
};
只有当我还需要显示主脚本的代码时,这才是命令的代码。我会这样做的。
【问题讨论】:
标签: javascript node.js discord discord.js