Answers for "args discord js"

1

define args discord

if (!message.content.startsWith(prefix) || message.author.bot) return;

const args = message.content.slice(prefix.length).trim().split(' ');
const command = args.shift().toLowerCase();
Posted by: Guest on December-20-2020
1

discord.js arguments

//Seperate Arguments
let seperateArgs = args[0]; //0 being the first argument
//Input "hello world"
//Output "hello"

//Full Arguments
let fullArgs = args.slice(0).join(' ');
//Input "hello world"
//Output "hello world"
Posted by: Guest on January-15-2021
0

how to define args using param discord.js

const prefix = "!";
const args = message.content.substring(prefix.length).split(" ")
Posted by: Guest on February-25-2021
0

args slice discord.js

const args = message.content.slice(prefix.length).trim().split(/ +/g);
const command = args.shift().toLowerCase(); 

if (command === "RandomCommand") {
  let firstArgs = args[0]; //first argument
  let secondArgs = args[1]; //second argument
  if (firstArgs && secondArgs) { //check if the args are existing
  	message.channel.send(firstArgs, secondArgs) //send the value of the args
  }
}
Posted by: Guest on December-16-2020

Browse Popular Code Answers by Language