1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/args-info.js

13 lines
333 B
JavaScript

module.exports = {
name: 'args-info',
description: 'change your text into arguments',
args: true,
usage: '<random arguments>',
execute(message, args) {
if (args[0] === 'foo') {
return message.channel.send('bar');
}
message.channel.send(`First argument: ${args[0]}`);
},
};