只要机器人加入服务器,我只希望它在聊天中说一些简单的指令或信息。 有人知道我该怎么做吗?
答案 0 :(得分:0)
client.on("guildCreate", guild => {
const channels = guild.channels.cache.filter(channel => channel.type == "text");
channels.first().send("Thank you for inviting me!").catch(e => console.log(e));
});