Hey I made this snippet showing the bot info! the snippet already exists in this way but as a message.create I made it as a slash command the snippet lets the bot respond in an embed Have fun! Credits: https://autocode.com/Kelsoji/snippets/cachsnpt_m1btQuUhG7A4F4UzBLf2T1g4pQJpceGjsetd/
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
await lib.discord.channels['@0.1.2'].messages.create({
channel_id: `${context.params.event.channel_id}`,
content: '',
tts: false,
embeds: [
{
type: 'rich',
title: `✨ Bot Information ✨ `,
description: `The Unpredictable Discord Bot!`,
color: 0xabccff, //Here you can change the color of the embed
fields: [
{
name: `Developer:`,
value: `<@>`,// you can put your ID here
inline: true,
},
{
name: `Created on:`,
value: `💡 | 22/7/22`, // put you creation date here (also works as a timestamp)
inline: true,
},
{
name: `Commands`,
value: ` \`/ban\` \`/kick\` \`/mute\``, //Change that to your commands
inline: true,
},
{
name: `Why our bot?`,
value: `Our bot is an easy-to-use bot with many features and commands......`,//You can change this to your sentences here
},
{
name: `Features`,
value: `Feature 1 ......`,// add your bots features here
},
{
name: `Features`,
value: `Feature 2 ......`,// add your bots features here
inline: true,
},
],
},
],
});