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

Categories

0 votes
821 views
in Technique[技术] by (71.8m points)

discord.js - 通道静音命令Discordjs(Channel Mute command Discordjs)

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

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

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...