[Solved] Giving multiple prompts over DM’s
You CAN use message collectors. However, you need to have it in a variable. Here is an example: msg.author.send(‘some prompt’).then(m => { let i = 0; var collector = m.channel.createMessageCollector(me => me.author.id === msg.author.id && me.channel === m.channel, {max: /*some number*/}) collector.on(‘collect’, collected => { if(collected.content === ‘end’) return collector.stop(); //basically if you want to … Read more