“discord.py Enviar mensaje al canal con Mutiple ID” Código de respuesta

discord.py Enviar mensaje al canal con Mutiple ID

@bot.command(pass_context=True)
async def ping(ctx):
    channels_to_send = ["1234567890", "234567890"]
    for channel_id in channels_to_send:
        channel = bot.get_channel(channel_id)
        await bot.send_message(channel, "Pong")
DNISH06

discord.py Enviar mensaje al canal con Mutiple ID

@bot.command(pass_context=True)
async def ping(ctx):
    channels_to_send = ["1234567890", "234567890"]
    for channel_id in channels_to_send:
        channel = bot.get_channel(channel_id)
        await bot.send_message(channel, "Pong")
DNISH06

Respuestas similares a “discord.py Enviar mensaje al canal con Mutiple ID”

Preguntas similares a “discord.py Enviar mensaje al canal con Mutiple ID”

Más respuestas relacionadas con “discord.py Enviar mensaje al canal con Mutiple ID” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código