A
A
Alexander2020-02-16 13:35:53
JavaScript
Alexander, 2020-02-16 13:35:53

How to make Discord bot accept two arguments?

I wrote a code that allows the bot to change the name of the server on command.

const Discord = module.require('discord.js'); 
const fs = require("fs"); 
module.exports.run = async (robot,message,args) => { 

    if (message.content =="!servername_set ", args[0]){ 
        message.guild.setName(args[0]);
     }      
  
}; 
module.exports.help = { 
name: "servername_set" 
};

When I write to the chat "!servername_set Server Server1" - the bot changes the name of the server only to Server. I need it to be able to change the server name to "Server Server1". Please tell me how to do it.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
C
CatCatcher, 2020-02-16
@Alexandre888

args = message.content.split(' ');
args.shift();
//убрали 1 элемент (саму команду)
args = args.join(' ');
//теперь это единая строка

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question