因此,我目前正在制造某种类型的应用程序机器人,但是当我尝试在dms
中使用Discord Collector时,它就无法正常工作。不知道它是否由于代码而没有开始或只是不起作用。
这可能是一些愚蠢的原因,但我只是想不通。
message.author.send("hi its me u started an application")
const filter = m => m.author.id === message.author.id && m.channel.type === "dm"
const collector = message.channel.createMessageCollector(filter, {max: 1, time: 3*60*1000 });
collector.on('collect', m => {
console.log(`Collected: ${m.content}`)
})
谢谢!