I tried to make a +cmute command that will lock everyone's typing access from the channel.
(我试图制作一个+ cmute命令,该命令将锁定每个人从通道的键入访问权限。)
Here is the code I tried: (这是我尝试的代码:)
name: 'cmute',
description: 'Mutes the specified channel.',
aliases: ['commands'],
usage: '[command name]',
cooldown: 5,
execute(message, args) {
if (member.roles.has('640623199817826324') === true) {
channel.overwritePermissions(channel.guild.defaultRole, { SEND_MESSAGES: false })}
if (member.roles.has('640623199817826324') === false) {
message.reply(`You don't have permissions to do this!`)
}
};
ask by Andrei David Hancu translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…