Discord 机器人不回复消息
Discord bot is not replying to messages
我一直在尝试设置一个 discord 机器人,按照文档,我已经能够设置一个斜杠命令,但无法让机器人回复服务器上的消息。
这是我用来设置来自 docs 的斜杠命令的代码。
const { REST } = require('@discordjs/rest');
const { Routes } = require('discord-api-types/v9');
const commands = [{
name: 'ping',
description: 'Replies with Pong!'
}];
const rest = new REST({ version: '9' }).setToken('token');
(async () => {
try {
console.log('Started refreshing application (/) commands.');
await rest.put(
Routes.applicationGuildCommands(CLIENT_ID, GUILD_ID),
{ body: commands },
);
console.log('Successfully reloaded application (/) commands.');
} catch (error) {
console.error(error);
}
})();
在此之后,我使用以下代码设置了机器人:
const { Client, Intents } = require('discord.js');
const client = new Client({ intents: [Intents.FLAGS.GUILDS] });
client.once('ready', () => {
console.log('Ready!');
console.log(`Logged in as ${client.user.tag}!`);
});
client.on('interactionCreate', async interaction => {
// console.log(interaction)
if (!interaction.isCommand()) return;
if (interaction.commandName === 'ping') {
await interaction.reply('Pong!');
// await interaction.reply(client.user + '');
}
});
client.login('BOT_TOKEN');
现在我可以得到Pong的回应了!当我说 /ping.
但是在我从 添加以下代码后,我没有收到机器人的任何响应。
client.on('message', msg => {
if (msg.isMentioned(client.user)) {
msg.reply('pong');
}
});
我希望机器人能够回复消息而不仅仅是斜杠命令。有人可以帮忙吗?谢谢!!
首先,您缺少 GUILD_MESSAGES
接收 messageCreate
事件的意图。
const client = new Discord.Client({ intents: ["GUILDS", "GUILD_MESSAGES"] });
其次,message
事件已弃用,请改用 messageCreate
。
client.on("messageCreate", (message) => {
if (message.mentions.has(client.user)) {
message.reply("Pong!");
}
});
最后,Message.isMentioned()
不是logner函数,它来自discord.jsv11。使用 MessageMentions.has()
检查消息中是否提及用户。
测试使用 discord.js ^13.0.1
.
我一直在尝试设置一个 discord 机器人,按照文档,我已经能够设置一个斜杠命令,但无法让机器人回复服务器上的消息。
这是我用来设置来自 docs 的斜杠命令的代码。
const { REST } = require('@discordjs/rest');
const { Routes } = require('discord-api-types/v9');
const commands = [{
name: 'ping',
description: 'Replies with Pong!'
}];
const rest = new REST({ version: '9' }).setToken('token');
(async () => {
try {
console.log('Started refreshing application (/) commands.');
await rest.put(
Routes.applicationGuildCommands(CLIENT_ID, GUILD_ID),
{ body: commands },
);
console.log('Successfully reloaded application (/) commands.');
} catch (error) {
console.error(error);
}
})();
在此之后,我使用以下代码设置了机器人:
const { Client, Intents } = require('discord.js');
const client = new Client({ intents: [Intents.FLAGS.GUILDS] });
client.once('ready', () => {
console.log('Ready!');
console.log(`Logged in as ${client.user.tag}!`);
});
client.on('interactionCreate', async interaction => {
// console.log(interaction)
if (!interaction.isCommand()) return;
if (interaction.commandName === 'ping') {
await interaction.reply('Pong!');
// await interaction.reply(client.user + '');
}
});
client.login('BOT_TOKEN');
现在我可以得到Pong的回应了!当我说 /ping.
但是在我从
client.on('message', msg => {
if (msg.isMentioned(client.user)) {
msg.reply('pong');
}
});
我希望机器人能够回复消息而不仅仅是斜杠命令。有人可以帮忙吗?谢谢!!
首先,您缺少 GUILD_MESSAGES
接收 messageCreate
事件的意图。
const client = new Discord.Client({ intents: ["GUILDS", "GUILD_MESSAGES"] });
其次,message
事件已弃用,请改用 messageCreate
。
client.on("messageCreate", (message) => {
if (message.mentions.has(client.user)) {
message.reply("Pong!");
}
});
最后,Message.isMentioned()
不是logner函数,它来自discord.jsv11。使用 MessageMentions.has()
检查消息中是否提及用户。
测试使用 discord.js ^13.0.1
.