Billy/commands/randomducul.js

18 lines
553 B
JavaScript

const { SlashCommandBuilder } = require('@discordjs/builders');
module.exports = {
data: new SlashCommandBuilder()
.setName('randomducul')
.setDescription('Un truc random. Du cul.'),
async execute(interaction) {
const fs = require('fs');
const file = fs.readFileSync('./fr.txt', 'utf8', (err, data) => {
if(err) console.log(err);return;
});
var wordsFR = file.toString().split('\n');
let rand = Math.floor(Math.random() * wordsFR.length);
const reply = wordsFR[rand].trim();
await interaction.reply( reply + ' du cul !');
},
};