So erstellen Sie einen Befehl, der Attribute in Discord in JS empfängt
// client.on('message', message => {
if (!message.content.startsWith(prefix) || message.author.bot) return;
const args = message.content.slice(prefix.length).trim().split(' ');
const command = args.shift().toLowerCase();
// the rest of your code
Weary Whale