“Discord.js commence” Réponses codées

Discord.js commence

const Discord = require('discord.js');
const client = new Discord.Client();
const token = 'TOLKEN'; // Add your token here

client.on('ready', () => {
  console.log('The client is ready!')
  })

client.login(token)
sydneyyy

Discord.js bot

//first you must install dicord.js by running the command: npm install discord.js
//once u do that copy and paste this into your main file
const Discord = require('discord.js');
const client = new Discord.Client();

client.on('ready', () =>{
	client.user.setStatus('your status')
	console.log('Connected!')
})
//rest of your code

//always remember to never share your token with anyone
client.login('your-token-here')
skittles

Discord.js Démarrer le code

const Discord = require('discord.js') //this says that its using discord.js and classifing it as a bot
const bot = new Discord.Client();

const token = 'put your bots token here!';
//link to the dev portal to make your own discord bot here: https://discord.com/developers/applications
A General Coder

Discord.js commence

const Discord = require('discord.js');
const client = new Discord.Client();
const token = 'YOUR TOKEN HERE'; // For get a token , go here https://discord.com/developers/applications

client.login(token);
FrizeRahess

Réponses similaires à “Discord.js commence”

Questions similaires à “Discord.js commence”

Plus de réponses similaires à “Discord.js commence” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code