“Discord Bot JavaScript” Ответ

Discord.js Start

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 Bot JavaScript

const Discord = require('discord.js');

const DISCORD_SECRET = "put bot token here";

const client = new Discord.Client();

client.on('message', msg => {
  if (msg.content === 'ping') {
    msg.reply('pong');
  }
});

client.login(DISCORD_SECRET);
SunflowerToad

Ответы похожие на “Discord Bot JavaScript”

Смотреть популярные ответы по языку

Смотреть другие языки программирования