showing results for - "discord js bot credits command"
Liana
20 Jan 2016
1If you want to add credits (Bot creators) in an embedded response use the following:
2
3    const embed = new Discord.MessageEmbed()
4        .setColor('#0099ff')
5        .setTitle('Bot Creation Team')
6        .setAuthor('<ENTER_AUTHOR_HERE>')
7        .setDescription('I was made by <ENTER @ID HERE>.')
8        .setTimestamp()
9        .setFooter('<ENTER_FOOTER_NOTES_HERE');
10    
11	message.channel.send(embed).catch(e => { return e; });