# Commands with user input (a.k.a. "arguments")

TIP

This page is a follow-up and bases its code on the previous page.

Sometimes you'll want to determine the result of a command depending on user input. It's a common case with a simple solution. This section will teach you how to extract user input from a message and use it in your code. Generally, you'll hear other people refer to this as "arguments", and you should refer to them as that as well.

# Basic arguments

We'll be tackling two things at once here. We will explain along the way, so don't worry if you don't understand immediately.

Go to your message event handler and add the following block of code at the top of it.


 

 
 



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();
	// ...
});
  1. If the message either doesn't start with the prefix or the author is a bot, exit early.
  2. Create an args variable that slices off the prefix entirely, removes the leftover whitespaces, and then splits it into an array by spaces.
  3. Create a command variable by calling args.shift(), which will take the first element in the array and return it while also removing it from the original array (so that you don't have the command name string inside the args array).

Hopefully, that's a bit clearer. Let's create a quick command to check out the result of our new addition:







 
 
 
 
 
 
 


client.on('message', message => {
	// ...
	// Using the new `command` variable, this makes it easier to manage!
	// You can switch your other commands to this format as well
	if (command === 'ping') {
		message.channel.send('Pong.');
	} else if (command === 'args-info') {
		if (!args.length) {
			return message.channel.send(`You didn't provide any arguments, ${message.author}!`);
		}

		message.channel.send(`Command name: ${command}\nArguments: ${args}`);
	}
});

If you try it out, you'll get something like this:

User
User 08/14/2021
!args-info here are my arguments
Guide Bot
Guide Bot Bot 08/14/2021
Command name: args-info
Arguments: here,are,my,arguments

Looks good! Don't worry about the comma separation; that's the expected output when trying to send an array as a string.

Now that you have an array of arguments, you can interact with it accordingly! Try out this small addition to the command:





 
 
 
 
 
 
 
 
 


client.on('message', message => {
	// ...
	if (command === 'ping') {
		message.channel.send('Pong.');
	} else if (command === 'args-info') {
		if (!args.length) {
			return message.channel.send(`You didn't provide any arguments, ${message.author}!`);
		} else if (args[0] === 'foo') {
			return message.channel.send('bar');
		}

		message.channel.send(`First argument: ${args[0]}`);
	}
});

So if the first argument provided is equal to "foo", then send back "bar". Otherwise, send back the argument the user supplied.

User
User 08/14/2021
!args-info foo
Guide Bot
Guide Bot Bot 08/14/2021
bar
User
User 08/14/2021
!args-info not-foo
Guide Bot
Guide Bot Bot 08/14/2021
First argument: not-foo

# Caveats

Currently, you're using .split(' ') to split the command arguments. However, there's actually a slight issue with this. As is, it'll split the string by each and every space. Well, what happens if someone accidentally (or even purposely) adds additional spaces? Here's what:

User
User 08/14/2021
!args-info here are my arguments
Guide Bot
Guide Bot Bot 08/14/2021
Command name: args-info
Arguments: here,,,,,are,,,,,my,,,,,,arguments
Argument length: 20

If you've never done something like this before, this probably isn't what you'd expect, right? Thankfully, there's a simple solution for this issue: using something called a "regular expression" (commonly referred to as "regex") to handle possible repeated spaces.

- const args = message.content.slice(prefix.length).trim().split(' ');
+ const args = message.content.slice(prefix.length).trim().split(/ +/);
User
User 08/14/2021
!args-info here are my arguments
Guide Bot
Guide Bot Bot 08/14/2021
Command name: args-info
Arguments: here,are,my,arguments
Argument length: 4

Awesome! Nothing to worry in that regard about now.

# Common situations with arguments

Here is where we'll be going over a few everyday situations where you'll want to make sure that an argument fits specific criteria.

# Mentions

Using the example of a kick command, you most likely want it to allow the user to use the command and mention the person to kick, right? We won't be constructing the full kick command in this example, but here's how you can go about it:





 
 
 
 
 
 
 


client.on('message', message => {
	// ...
	if (command === 'ping') {
		message.channel.send('Pong.');
	} else if (command === 'kick') {
		// Grab the "first" mentioned user from the message
		// This will return a `User` object, just like `message.author`
		const taggedUser = message.mentions.users.first();

		message.channel.send(`You wanted to kick: ${taggedUser.username}`);
	}
});

And as you can see, it works!

User
User 08/14/2021
!kick @Guide Bot
Guide Bot
Guide Bot Bot 08/14/2021
You wanted to kick: Guide Bot

But what happens if you try to use the command without mentioning anybody? If you try it yourself, you'll notice that the bot doesn't respond (due to it crashing), and you should see something like this in your console:

message.channel.send(`You wanted to kick: ${taggedUser.username}`);
													  ^

TypeError: Cannot read property 'username' of undefined

That's because you're trying to access the username property of a user you didn't mention! Since message.mentions.users is a Collection and you're trying to call .first() on an empty Collection, it'll return undefined. You can add a quick coherence check above the const taggedUser = ... line to prevent this from happening.

 
 
 



if (!message.mentions.users.size) {
	return message.reply('you need to tag a user in order to kick them!');
}

const taggedUser = message.mentions.users.first();

TIP

message.reply() is an alternative to message.channel.send() that prepends a mention of the person who sent the message, unless the message was sent in a DM. It can be handy for providing feedback!

Since message.mentions.users is a Collection, it has a .size property. If no users are mentioned, it'll return 0 (which is a falsy (opens new window) value), meaning you can use if (!value) to check for its validity.

If you try again, it should work as expected.

User
User 08/14/2021
!kick
Guide Bot
Guide Bot Bot 08/14/2021
@User, you need to tag a user to kick them!
User
User 08/14/2021
!kick @Guide Bot
Guide Bot
Guide Bot Bot 08/14/2021
You wanted to kick: Guide Bot

# Working with multiple mentions

Let's say you have an !avatar command, where it'll display the avatar of all the mentioned users or your avatar if no users were mentioned. Focus on that second part for now–how would you go about displaying your avatar if no users were mentioned? Taking the snippet for the code you just used, you can do it just like this:

 
 
 



if (!message.mentions.users.size) {
	return message.channel.send(`Your avatar: <${message.author.displayAvatarURL}>`);
}

const taggedUser = message.mentions.users.first();
 
 
 



if (!message.mentions.users.size) {
	return message.channel.send(`Your avatar: <${message.author.displayAvatarURL({ format: 'png', dynamic: true })}>`);
}

const taggedUser = message.mentions.users.first();

If you provide the dynamic option, you will receive a .gif URL if the image is animated; otherwise, it will fall back to the specified format or its default .webp.

That part is simple; recycle the if statement you used in the section above and displaying the link to your avatar.

User
User 08/14/2021
!avatar

The next part is where it takes a turn–displaying the avatars of all the mentioned users. But it's simpler than you may think! message.mentions.users returns a Collection (as previously mentioned), which you can loop over in several different ways. You'll be using .map() to loop here since it allows you to easily collect and store data in a variable to send one final message in the end, as opposed to multiple.





 
 
 



 

if (!message.mentions.users.size) {
	return message.channel.send(`Your avatar: <${message.author.displayAvatarURL}>`);
}

const avatarList = message.mentions.users.map(user => {
	return `${user.username}'s avatar: <${user.displayAvatarURL}>`;
});

// Send the entire array of strings as a message
// By default, discord.js will `.join()` the array with `\n`
message.channel.send(avatarList);




 
 
 



 

if (!message.mentions.users.size) {
	return message.channel.send(`Your avatar: <${message.author.displayAvatarURL({ format: 'png', dynamic: true })}>`);
}

const avatarList = message.mentions.users.map(user => {
	return `${user.username}'s avatar: <${user.displayAvatarURL({ format: 'png', dynamic: true })}>`;
});

// Send the entire array of strings as a message
// By default, discord.js will `.join()` the array with `\n`
message.channel.send(avatarList);

If you provide the dynamic option, you will receive a .gif URL if the image is animated; otherwise, it will fall back to the specified format or its default .webp.

And ta-da! You now have a list of avatar links of all the users you tagged.

It does take up a lot of screen, but this is just an example command anyway.

TIP

If you're looking for a more advanced way to handle mentions as arguments, you can check out this guide.

# Number ranges

Sometimes you'll want users to give you input that ranges from X to Y, but nothing outside of that. Additionally, you want to make sure that they give you an actual number and not random characters. An example of this would be a !prune command, where it deletes X messages in the channel, depending on what the user inputs.

The first step would be to check if the input they gave is an actual number.





 
 
 
 
 
 
 


client.on('message', message => {
	// ...
	if (command === 'ping') {
		message.channel.send('Pong.');
	} else if (command === 'prune') {
		const amount = parseInt(args[0]);

		if (isNaN(amount)) {
			return message.reply('that doesn\'t seem to be a valid number.');
		}
	}
});

And if you test it, it should work as expected.

User
User 08/14/2021
!prune some-string
Guide Bot
Guide Bot Bot 08/14/2021
@User, that doesn't seem to be a valid number.

So what you need to do next is check if the first argument is between X and Y. Following the idea of a prune command, you'll most likely want to use the .bulkDelete() method, which allows you to delete multiple messages in one fell swoop.

With that said, that method does have its limits: you can only delete a minimum of 2 and a maximum of 100 messages (at a time). Fortunately, there are a few ways to deal with that. One of those ways would be to check the value of the amount variable, like so:



 
 
 

if (isNaN(amount)) {
	return message.reply('that doesn\'t seem to be a valid number.');
} else if (amount < 2 || amount > 100) {
	return message.reply('you need to input a number between 2 and 100.');
}

Now all that's left is to delete the messages! It's a simple single line of code:

message.channel.bulkDelete(amount);

And you've got a working prune command! Create a test channel, send a few random messages, and test it out.

# Caveats

You should note that there are a few caveats with the .bulkDelete() method. The first would be the trying to delete messages older than two weeks, which would normally error. Here's an easy fix for that:

message.channel.bulkDelete(amount, true);

The second parameter in the .bulkDelete() method will filter out messages older than two weeks if you give it a truthy value. So if there are 50 messages and 25 of them are older than two weeks, it'll only delete the first 25 without throwing an error. However, if all the messages you're trying to delete are older than two weeks, then it will still throw an error. Knowing this, you should catch that error by chaining a .catch().

message.channel.bulkDelete(amount, true).catch(err => {
	console.error(err);
	message.channel.send('there was an error trying to prune messages in this channel!');
});

TIP

If you aren't familiar with the .catch() method, it catches errors on Promises. Unsure what Promises are? Google around for more info!

The other caveat with this is that the !prune {number} message you sent will also count towards the amount deleted. This means that if you send !prune 2, it'll delete that message and only one other. There are a couple ways around this, but we'll take the easiest route for the sake of the tutorial. Here are the edits to make to your current code:

 



 
 
 

const amount = parseInt(args[0]) + 1;

if (isNaN(amount)) {
	return message.reply('that doesn\'t seem to be a valid number.');
} else if (amount < 2 || amount > 100) {
	return message.reply('you need to input a number between 2 and 100.');
}

# Resulting code

If you want to compare your code to the code we've constructed so far, you can review it over on the GitHub repository here (opens new window).

You're browsing the guide for discord.js v12. Check out what's new in discord.js v13.
[Dismiss for 1 week]