“Discord.js случайное сообщение” Ответ

Discord.js случайное сообщение

// 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

Случайное сообщение в 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 случайное сообщение

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

Ответы похожие на “Discord.js случайное сообщение”

Вопросы похожие на “Discord.js случайное сообщение”

Больше похожих ответов на “Discord.js случайное сообщение” по JavaScript

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

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