Saltar al contenido

discord.py invocar comando en un ejemplo de código de comando de barra

Indagamos por distintos espacios para traerte la respuesta a tu duda, si continúas con alguna duda déjanos tu inquietud y contestamos con gusto.

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

Aquí puedes ver las comentarios y valoraciones de los lectores

No se te olvide dar visibilidad a este ensayo si te valió la pena.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *