我开始学习discord.js,但现在我面临着这个问题。我尝试了一些谷歌搜索,但我不能设法解决它。
const Discord = require('discord.js');
// const Discord = require('discord.js');
// Using Intents class
const client = new Discord.Client();
client.on('message', (msg) => {
// Send back a reply when the specific command has been written by a user.
if (msg.content === '!hello') {
msg.reply('Hello, World!');
}
});
client.login('my_token');
这是我得到的错误:
5条答案
按热度按时间egmofgnx1#
您需要使用gateway intents指定您希望机器人接收的事件。
代替
const client = new Discord.Client();
用途
const client = new Discord.Client({ intents: [Enter intents here] })
比如说
const client = new Discord.Client({ intents: ["GUILDS", "GUILD_MESSAGES"] })
下面是另一个有用的页面:Gateways
npm install node@16
。5vf7fwbs2#
您可以通过在shell中键入以下代码来降低discord.js的版本:
最新的discord.js版本运行不太好,所以我使用v12。它不是一个复杂的脚本。
ss2ws0br3#
dfddblmv4#
添加意向。
您也可以使用discord.js文档中提供的模板。文档
ha5z0ras5#
您需要将您的Node.js更新到版本16。只需在Google搜索中搜索Node.js,进入他们的官方网站,从那里下载安装程序,然后安装它!