Replies With Embeds

GitHub Version

Assuming you done all the steps here. You are ready to get started with your fresh new bot.

first lets link the library, lets assume the library is in BB-DBotBits:

const { discordReplyEmbed } = require('./BB-DBotBits/discordReplyEmbed.js');

You can now use

discordReplyEmbed('wakeword', 'tite', 'body', 'footer', 'imageURL', 'titleURL');

If you want your bot to reply to “/hello”, this is how it would be laid out:

discordReplyEmbed(
    'hello', //wakeword
    'Hey There', // title of the embed
    'Hey there I am an embed.', // body of the embed
    'ByteBots', // footer text
    'https://bytebots.net/image.png', // image url
    'https://bytebots.net' // optional URL to make the title clickable
);

If you wan to skip an embed section please just leave that bit blank for example we are going to not use a url image:

discordReplyEmbed(
    'hello', //wakeword
    'Hey There', // title of the embed
    'Hey there I am an embed.', // body of the embed
    'ByteBots', // footer text
    '', // image url
    'https://bytebots.net' // optional URL to make the title clickable
);

You can pick and choose what you want to include

Important

Needed permissions:

message permissions