“canal hide comando em discord.py” Respostas de código

canal hide comando em discord.py

#hide channel
@bot.command(help=" Use this command to hide a channel")
@commands.has_permissions(manage_channels=True)
async def hide(ctx):
    await ctx.channel.set_permissions(ctx.guild.default_role,view_channel=False)
    await ctx.send('**<:vf:947194381172084767>This channel is hidden from everyone**')
    await ctx.channel.purge(limit=2)
Hunter 87

Comando de unsiding de canal em discord.py

#unhide channel
@bot.command(help=" Use this command to unhide a channel")
@commands.has_permissions(manage_channels=True)
async def unhide(ctx):
    await ctx.channel.set_permissions(ctx.guild.default_role,view_channel=True)
    await ctx.send('**<:vf:947194381172084767>This channel is visible to everyone**')
    await ctx.channel.purge(limit=2)
Hunter 87

Respostas semelhantes a “canal hide comando em discord.py”

Perguntas semelhantes a “canal hide comando em discord.py”

Mais respostas relacionadas para “canal hide comando em discord.py” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código