第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Discord.js - 刪除所有以 *(星號(hào))開(kāi)頭的角色

Discord.js - 刪除所有以 *(星號(hào))開(kāi)頭的角色

茅侃侃 2022-06-16 10:03:54
我需要?jiǎng)?chuàng)建一個(gè)命令,首先從所有以星號(hào)開(kāi)頭的角色中刪除該成員,然后分配一個(gè)將在命令參數(shù)中傳遞的角色。exports.run = (client, message, [where]) => {    var role = message.guild.roles.cache.find(role => role.name === where);    if (role && where.substring(0, 1) == '*') {        //remove all roles that start with * from the member, probably some kind of for loop?        message.member.roles.add(role);        message.channel.send(message.member.nickname + ' entered the channel ' + where + '.');    }    else message.channel.send('Channel' + where + ' does not exist or does not start with *.');};你能幫我解決那個(gè)for循環(huán)嗎?謝謝。
查看完整描述

1 回答

?
慕萊塢森

TA貢獻(xiàn)1810條經(jīng)驗(yàn) 獲得超4個(gè)贊

您的解決方案是:


const roles = message.member.roles.cache.array();


for (var i = 0; i < roles.length; i++) {

      if (roles[i].name.substring(0, 1) == "*") {

            message.member.roles.remove(roles[i]);

      }


}


查看完整回答
反對(duì) 回復(fù) 2022-06-16
  • 1 回答
  • 0 關(guān)注
  • 111 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)