前提・実現したいこと
DiscordJs,v12.2.0で以下内容につまずいています。
①チャンネルAでリアクション❌を押したときに特定のチャット以外を削除するようにしたい。
不明な点、試した内容
①
client.on('messageReactionAdd', async (reaction, user) => { if(user.bot)return; const channel = reaction.message.channel; const CHANNEL_A = ['機能させるチャンネル数字','機能させるチャンネル数字2']; if (reaction.emoji.name === '❌' && CHANNEL_A.includes(channel.id)) { const member = channel.guild.member(user) const messages = await channel.messages.fetch({ limit: 100 }) if (user.id === reaction.message.guild.ownerID) { const filtered = messages.filter(message => !message.author.bot) channel.bulkDelete(filtered) }};}); ```現在これのconst filtered = messages.filter(message => !message.author.bot) この部分のBOTを除く全てから指定のチャット以外すべてを削除するようにしたいのですが、どう書いたらいいのかつまずいています。 ### 補足情報(FW/ツールのバージョンなど) Discordjs vscode node v12.2.0
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。