如何让机器人在首次加入服务器时说出特定消息?

How do I make a bot say a certain message when it first joins a server?

我正在尝试让 discord 机器人在首次加入 Discord 服务器时说出特定消息,因此当该机器人首次加入 Discord 服务器时,它会说类似 "Hello everyone...." 的内容。我查看了很多资源,但 none 似乎是 JavaScript。有人可以帮忙吗?

client.on('guildCreate', joinedGuild => {
//Blah
}

guildCreate 处理程序 here 的文档。

您可以设置一个事件侦听器,在它注册新公会时执行。

例如:

Client.on("guildCreate", guild => {
  // Code to be executed whenever a new guild is registered
});

你可以了解更多here