“Discord.js Polecenia administratora” Kod odpowiedzi

Uzyskaj rolę Discord.js

let role = message.guild.roles.cache.find(r => r.id === "Role ID");

// The member you want to add the role to
let member = message.mentions.members.first();

// Add role to the member
member.roles.add(role);

// Or add it to yourself
message.author.roles.add(role);
Blushing Bee

Discord.js Polecenia administratora

client.on("message", message => {
    if (message.content === ("commend")) {
        if (!message.member.hasPermission("ADMINISTRATOR"))  return;
        message.channel.send('reply'); 
  };
});
Envious Elk

Odpowiedzi podobne do “Discord.js Polecenia administratora”

Pytania podobne do “Discord.js Polecenia administratora”

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

Przeglądaj inne języki kodu