“COMANDO DESCUERRA DEL CANAL EN DISCORD.PY” Código de respuesta

COMANDO DESCUERRA DEL CANAL EN 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 canal Unhiding en 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

Respuestas similares a “COMANDO DESCUERRA DEL CANAL EN DISCORD.PY”

Preguntas similares a “COMANDO DESCUERRA DEL CANAL EN DISCORD.PY”

Más respuestas relacionadas con “COMANDO DESCUERRA DEL CANAL EN DISCORD.PY” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código