const bots = message.guild.members.cache.filter(member => member.user.bot);
let reply = "Here's a list of bots in this server:\n";
let count = 1;
bots.forEach(bot => {
reply += `${count}. <@${bot.user.id}>\n`;
count++;
});
message.channel.send(reply).catch(console.error);