gpt4 book ai didi

javascript - 我的不和谐机器人代码正在运行,但没有响应我的命令

转载 作者:行者123 更新时间:2023-12-02 01:56:20 25 4
gpt4 key购买 nike

我是一名编程大三学生。我了解 Node.js,并且想编写自己的 Discord 机器人。

我下面写的代码不起作用。你能帮我解决这个问题吗?

const { Client, Intents } = require('discord.js');
const config = require('./config.json');
const client = new Client({ intents: [Intents.FLAGS.GUILDS] });

client.once('ready', () => {
console.log('Ready!');
});

client.on('message', message=>{
if(!message.content.startsWith(config.prefix) || message.author.bot) return;

const args = message.content.slice(config.prefix.length).split(/ +/);
const command = args.shift().toLowerCase();

if(command === 'ping'){
message.channel.send('pong!');
}
})

client.login(config.token);

最佳答案

GUILDS 意图不足以接收消息。您还需要 GUILD_MESSAGES 消息意图:

const client = new Client({ 
intents: [
Intents.FLAGS.GUILDS,
Intents.FLAGS.GUILD_MESSAGES
]
})

关于javascript - 我的不和谐机器人代码正在运行,但没有响应我的命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69575603/

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