Answer the question
In order to leave comments, you need to log in
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"
};
Answer the question
In order to leave comments, you need to log in
args = message.content.split(' ');
args.shift();
//убрали 1 элемент (саму команду)
args = args.join(' ');
//теперь это единая строка
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question