Ejemplo 1: inicio de discord.js
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)
Ejemplo 2: bot discord.js
//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')
Ejemplo 3: Conceptos básicos de Discord.js
const Discord = require("discord.js")
const client = new Discord.Client()
client.on("ready", ()=>{
console.log(`Logged in as ${client.user.tag}`)
})
client.on("message", async function (message) {
if(message.content === "!test") {
message.reply("Hello World!")
}
})
Ejemplo 4: inicio de discord.js
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);
Ejemplo 5: descarga de discord.js
/* If you are a mac user, do this in TERMINAL
If you are a Window/Linux user, do this in COMMAND PROMPT
npm install discord.js
DISCORD.JS IS NOW INSTALLED.
I suggest looking on youtube for a tutorial on setting up a project, but here are the basics.
THIS CODE SHOULD BE IN A "index.js" or "main.js" or whatever your main file is.*/
const Discord = require('discord.js');
const client - new Discord.Client();
const /*you can have any prefix you want here*/ prefix = "?"
client.on("ready", () => {
console.log('literally anything you want goes here')
})
//SUPER BASIC COMMAND: BASICALLY SHOWS THAT YOUR BOT CAN SPEAK
client.on('message', message => {
if(message.content.startsWith(`${prefix}ping`)){
message.channel.send('pong!');
}
})
//EXTREMELY IMPORTANT: GET YOUR TOKEN FROM THE DISCORD DEVELOPER PORTAL
//NEVER EVER EVER EVER TELL/GIVE ANYONE YOUR TOKEN!
client.login('your token here');
Ejemplo 6: comando discord js
bot.on('message', function(message) {
if(message.author.bot) return;
if(message.content === '/lvl') {
message.channel.send("lvl system.")
}
});
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)