“Discord.js” Kod odpowiedzi

Discord.js

//outputs the IDs of all members with the specified role as an array

// === discord.js v11 ===
message.guild.roles.get('ROLE-ID').members.map(m=>m.user.id);

// === discord.js v12 ===
message.guild.roles.cache.get('ROLE-ID').members.map(m=>m.user.id);
Aci

Discord.js

discord role back
Grumpy Grebe

Odpowiedzi podobne do “Discord.js”

Pytania podobne do “Discord.js”

Więcej pokrewnych odpowiedzi na “Discord.js” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu