Esta es la respuesta más válida que encomtrarás brindar, pero primero obsérvala detenidamente y analiza si se adapta a tu proyecto.
Ejemplo: comandos discord py slash
import discord # Imports from discord.ext import commands # Imports from discord_slash import SlashCommand, SlashContext # Imports
bot = commands.Bot(command_prefix="!", intents=discord.Intents.all())# Creates client
slash = SlashCommand(bot)@slash.slash(name="test")# Sets the name of the commandasyncdef_test(ctx: SlashContext):# Wheen command "test" is used
embed = discord.Embed(title="embed test")# Creates a embedawait ctx.send(content="test", embeds=[embed])# Sends the embed
bot.run("discord_token")# Put your token here
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)