Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
818 views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...