“Discord.js Mensaje aleatorio” Código de respuesta

Discord.js Mensaje aleatorio

// Add here the messages you want to be displayed.
const messages = ["Message1", "Message2", "Message3", "Message4"]

const randomMessage = messages[Math.floor(Math.random() * messages.length)];

// The message will log into the console!
console.log(randomMessage)
Eager Echidna

mensaje aleatorio en discord.js

module.exports = {
    name: 'random',
    description: 'random?',
    execute(message, args){
        // Now the randomMessage will be recalculated every time the command is run
        const randomMessage = messages[Math.floor(Math.random() * messages.length)];
        message.channel.send(randomMessage);
    }
}
Important Iguana

Discord.js Mensaje aleatorio

const messages = ["1", "2", "3"]

module.exports = {
    name: "fax",
    category: "fun",
    permissions: [],
    devOnly: false,
    run: async ({client, message, args}) => {
      //make sure that its let and not const, const will always be the same value
        let randomMessage  = messages[Math.floor(Math.random() * messages.length)];

        message.reply(randomMessage)
    }
} 
IDcLuc

Respuestas similares a “Discord.js Mensaje aleatorio”

Preguntas similares a “Discord.js Mensaje aleatorio”

Más respuestas relacionadas con “Discord.js Mensaje aleatorio” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código