admin管理员组

文章数量:814986

(discord.js)在公会中选择特定频道

我需要它来工作,但我不知道所选通道的变量是什么。我需要删除710069375184404500频道上的所有消息。我正在使用v12 Discord.js。

var selectedchannel =  .....

selectedchannel.messages.fetch({ limit: 99 }).then(messages => { 
     selectedchannel.bulkDelete(messages)

回答如下:

您可以先获取频道。

var selectedchannel = client.channels.cache.get('710069375184404500')

selectedchannel.messages.fetch({ limit: 99 }).then(messages => { 
     selectedchannel.bulkDelete(messages)

本文标签: (discordjs)在公会中选择特定频道