“Discord Py Get Channel ID mit Namen” Code-Antworten

Discord Py Get Channel ID mit Namen

@bot.command()
async def get_channel(ctx, *, given_name=None):
    for channel in ctx.guild.channels:
        if channel.name == given_name:
            wanted_channel_id = channel.id

    await ctx.send(wanted_channel_id) # this is just to check 
Mentix

Discord.py Get Channel ID mit Kanalname

channel = discord.utils.get(server.channels, name="Channel_name_here", type="ChannelType.voice") 
Comfortable Cockroach

Discord.py Get Channel ID mit Kanalname

channel_names = ['channel1', 'channel2', 'channel3']
for ch in channel_names:
    channel = discord.get.utils(server.channels, name=ch, type="ChannelType.voice")
    full(channel)
Comfortable Cockroach

Ähnliche Antworten wie “Discord Py Get Channel ID mit Namen”

Fragen ähnlich wie “Discord Py Get Channel ID mit Namen”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen