亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

我可以設置我創建的頻道權限,比如只有我的員工角色可以編輯或刪除它嗎?到目前為止我的代碼:

我可以設置我創建的頻道權限,比如只有我的員工角色可以編輯或刪除它嗎?到目前為止我的代碼:

喵喵時光機 2023-04-01 17:35:38
我希望我的員工角色可以編輯、刪除這個創建的頻道。client.on('message', message =>{if (!message.content.startsWith('*open-channel')) return;  //This line for some bug happens in my botif (message.channel.id !== '759430340972118026') return;   // I set a channel for the users can only use                                                            //this command inif(message.author.bot || message.channel.type === "dm") return; //For bugs againif(!message.member.roles.cache.some(role => role.name === 'OWNER')) {               //This command only                                                                                     //for owner role now.      return message.reply('You should be OWNER for using this command.').then(message => {message.delete({ timeout: 8000 })})}  const messageArray = message.content.split(' ');const cmd = messageArray[0];const args = messageArray.slice(1).join(' ').toUpperCase();  if (message.content.startsWith('*open-channel'))var kanal = message.guild.channels.create(`${args} - ${message.author.tag}`,{type : 'voice'}).then(channel => channel.setParent(message.guild.channels.cache.find(channel => channel.name === "USER CHANNELS"))); //setParent moves my channel to choosen catagory. And 'args - message.author.tag'  is channel name                                                            message.channel.send("Its done now buddy :3");})如果我寫錯了,請原諒我的英語不好。:(
查看完整描述

1 回答

?
FFIVE

TA貢獻1797條經驗 獲得超6個贊

你可以使用GuildChannelManager.create.options.permissionOverwrites()。另外,您可以在創建通道時直接設置通道父級。

message.guild.channels.create(`${args} - ${message.author.tag}`, {

?type: 'voice',

?permissionOverwrites: [

? {

? ?id: '<Staff Role ID>',

? ?allow: ['MANAGE_CHANNELS'],

? },

?],

?parent: message.guild.channels.cache.find(

? (channel) => channel.name === 'USER CHANNELS'

?),

});


查看完整回答
反對 回復 2023-04-01
  • 1 回答
  • 0 關注
  • 121 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號