“Enviar mensaje al canal específico Discord.py” Código de respuesta

Enviar mensaje al canal específico Discord.py

channel = client.get_channel(12324234183172)
await channel.send('hello')
Dangerous Dog

Enviar mensaje en canal específico Discord.py

"""SEND MESSAGE IN SPECIFIC CHANNEL"""
@client.command()
async def announce(ctx, channel: discord.TextChannel):
		await channel.send("My text")
the indian dude

Cómo enviar un mensaje en un canal específico Discord.py

channel = client.get_channel(12324234183172) #channel id here
await channel.send('hello')
Alert Armadillo

Respuestas similares a “Enviar mensaje al canal específico Discord.py”

Preguntas similares a “Enviar mensaje al canal específico Discord.py”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código