最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

网站源码admin16浏览0评论

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

(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)
发布评论

评论列表(0)

  1. 暂无评论