Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

216
Views
Problemas con dming a un usuario si envía un comando

Estoy tratando de crear un bot de discordia que pueda servir para una multitud de propósitos. En este momento, necesito ayuda para eliminar al usuario si usa el prefijo !help. Probé varias formas de dming al usuario y no conducen a ninguna parte.

Aquí está mi código:

 const Discord = require("discord.js"); const config = require("./config.json"); const client = new Discord.Client({intents: ["GUILDS", "GUILD_MESSAGES"]}); const prefix = "!"; client.on("messageCreate", function(message) { if (message.author.bot) return; if (!message.content.startsWith(prefix)) return; const commandBody = message.content.slice(prefix.length); const args = commandBody.split(' '); const command = args.shift().toLowerCase(); if (command === "") { const timeTaken = Date.now() - message.createdTimestamp; message.reply("e") } }); client.on('message', message => { if (message.content === 'help') { messageCreate.author.send('Help') } }); client.login(config.BOT_TOKEN);
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Anota tu código aquí:

 if (message.content === 'help') { messageCreate.author.send('Help') }

¿Cómo se define messageCreate? Intente reemplazar messageCreate con solo message en el extracto anterior.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!