“Befehl zur Entsperrung von Channel -Entsperrung in Discord.py” Code-Antworten

Befehl zur Entsperrung von Channel -Entsperrung in Discord.py

#unlock command
@bot.command(help=" Use this command to lock a channel")
@commands.has_permissions(manage_channels=True)
async def unlock(ctx):
    await ctx.channel.set_permissions(ctx.guild.default_role,send_messages=True)
    await ctx.send('**<:vf:947194381172084767> Channel has been unlocked**')
    await ctx.channel.purge(limit=2)
Hunter 87

Channel Lock -Befehl in diskord.py

#lock command
@bot.command(help=" Use this command to lock a channel")
@commands.has_permissions(manage_channels=True)
async def lock(ctx):
    await ctx.channel.set_permissions(ctx.guild.default_role,send_messages=False)
    await ctx.send('**<:vf:947194381172084767> Channel has been locked**')
    await ctx.channel.purge(limit=2)
Hunter 87

Ähnliche Antworten wie “Befehl zur Entsperrung von Channel -Entsperrung in Discord.py”

Fragen ähnlich wie “Befehl zur Entsperrung von Channel -Entsperrung in Discord.py”

Weitere verwandte Antworten zu “Befehl zur Entsperrung von Channel -Entsperrung in Discord.py” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen