“Polecenie Hide Channel Hide in Discord.py” Kod odpowiedzi

Polecenie Hide Channel Hide in 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

kanał odłączający się w 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

Odpowiedzi podobne do “Polecenie Hide Channel Hide in Discord.py”

Pytania podobne do “Polecenie Hide Channel Hide in Discord.py”

Więcej pokrewnych odpowiedzi na “Polecenie Hide Channel Hide in Discord.py” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu