“Commande de manche de canal dans Discord.py” Réponses codées

Commande de manche de canal dans 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

Commande de channeau décédé dans 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

Réponses similaires à “Commande de manche de canal dans Discord.py”

Questions similaires à “Commande de manche de canal dans Discord.py”

Plus de réponses similaires à “Commande de manche de canal dans Discord.py” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code